mirror of https://github.com/Radarr/Radarr
added test for InheritFolderPermissions
This commit is contained in:
parent
1665bfa6ac
commit
bcec14fc9b
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue