added test for InheritFolderPermissions

This commit is contained in:
kay.one 2013-09-14 12:55:18 -07:00
parent 1665bfa6ac
commit bcec14fc9b

View file

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