added test for InheritFolderPermissions

This commit is contained in:
kay.one 2013-09-14 12:55:18 -07:00
parent 1665bfa6ac
commit bcec14fc9b
1 changed files with 11 additions and 0 deletions

View File

@ -198,6 +198,17 @@ namespace NzbDrone.Common.Test.DiskProviderTests
} }
} }
[Test]
public void should_be_able_to_set_permission_from_parrent()
{
var testFile = GetTestFilePath();
Subject.WriteAllText(testFile, new Guid().ToString());
Subject.InheritFolderPermissions(testFile);
}
[Test] [Test]
[Explicit] [Explicit]
public void check_last_write() public void check_last_write()