Fixes after rebase

This commit is contained in:
Mark McDowall
2014-01-26 16:09:44 -08:00
parent 409e1cca94
commit e9db0fc14a
18 changed files with 20 additions and 63 deletions
@@ -5,7 +5,6 @@ using NzbDrone.Test.Common;
namespace NzbDrone.Common.Test.DiskProviderTests
{
public class IsParentFixtureBase<TSubject> : TestBase<TSubject> where TSubject : class, IDiskProvider
public class IsParentFixture : TestBase
{
private string _parent = @"C:\Test".AsOsAgnostic();
@@ -15,7 +14,7 @@ namespace NzbDrone.Common.Test.DiskProviderTests
{
var path = @"C:\Another Folder".AsOsAgnostic();
DiskProvider.IsParent(_parent, path).Should().BeFalse();
DiskProviderBase.IsParent(_parent, path).Should().BeFalse();
}
[Test]
@@ -23,7 +22,7 @@ namespace NzbDrone.Common.Test.DiskProviderTests
{
var path = @"C:\Test\TV".AsOsAgnostic();
DiskProvider.IsParent(_parent, path).Should().BeTrue();
DiskProviderBase.IsParent(_parent, path).Should().BeTrue();
}
[Test]
@@ -31,7 +30,7 @@ namespace NzbDrone.Common.Test.DiskProviderTests
{
var path = @"C:\Test\30.Rock.S01E01.Pilot.avi".AsOsAgnostic();
DiskProvider.IsParent(_parent, path).Should().BeTrue();
DiskProviderBase.IsParent(_parent, path).Should().BeTrue();
}
}
}