From 5b25f9c7997e989275af9b8fccac93a820205c70 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 11 Aug 2013 21:57:10 -0700 Subject: [PATCH] OsAgnostic Paths --- .../DiskProviderTests/IsParentFixture.cs | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/NzbDrone.Common.Test/DiskProviderTests/IsParentFixture.cs b/NzbDrone.Common.Test/DiskProviderTests/IsParentFixture.cs index 0dcd77a30..8359ad481 100644 --- a/NzbDrone.Common.Test/DiskProviderTests/IsParentFixture.cs +++ b/NzbDrone.Common.Test/DiskProviderTests/IsParentFixture.cs @@ -11,22 +11,30 @@ namespace NzbDrone.Common.Test.DiskProviderTests [TestFixture] public class IsParentFixture : TestBase { + private string _parent = @"C:\Test".AsOsAgnostic(); + [Test] public void should_return_false_when_not_a_child() { - Subject.IsParent(@"C:\Test", @"C:\Another Folder").Should().BeFalse(); + var path = @"C:\Another Folder".AsOsAgnostic(); + + Subject.IsParent(_parent, path).Should().BeFalse(); } [Test] public void should_return_true_when_folder_is_parent_of_another_folder() { - Subject.IsParent(@"C:\Test", @"C:\Test\TV").Should().BeTrue(); + var path = @"C:\Test\TV".AsOsAgnostic(); + + Subject.IsParent(_parent, path).Should().BeTrue(); } [Test] public void should_return_true_when_folder_is_parent_of_a_file() { - Subject.IsParent(@"C:\Test", @"C:\Test\30.Rock.S01E01.Pilot.avi").Should().BeTrue(); + var path = @"C:\Test\30.Rock.S01E01.Pilot.avi".AsOsAgnostic(); + + Subject.IsParent(_parent, path).Should().BeTrue(); } } }