mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
OsAgnostic Paths
This commit is contained in:
parent
8d54bb64a7
commit
5b25f9c799
@ -11,22 +11,30 @@ namespace NzbDrone.Common.Test.DiskProviderTests
|
|||||||
[TestFixture]
|
[TestFixture]
|
||||||
public class IsParentFixture : TestBase<DiskProvider>
|
public class IsParentFixture : TestBase<DiskProvider>
|
||||||
{
|
{
|
||||||
|
private string _parent = @"C:\Test".AsOsAgnostic();
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void should_return_false_when_not_a_child()
|
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]
|
[Test]
|
||||||
public void should_return_true_when_folder_is_parent_of_another_folder()
|
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]
|
[Test]
|
||||||
public void should_return_true_when_folder_is_parent_of_a_file()
|
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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user