Merge pull request 38 from dev/33-DriveAutoMount into develop

This commit is contained in:
Andy Schwartzmeyer 2015-06-16 21:24:50 +00:00
commit 9351c05c82
3 changed files with 7 additions and 1 deletions

@ -1 +1 @@
Subproject commit 3ca3331f4bba19ed57595c173264a267878e0b65
Subproject commit 3196b5e0024efbba11bf58473dd8d42f7c8cad4f

View file

@ -13,6 +13,7 @@ namespace PSTests
PlatformTests.TestHasCom();
PlatformTests.TestHasAmsi();
PlatformTests.TestUsesCodeSignedAssemblies();
PlatformTests.TestHasDriveAutoMounting();
PSTypeExtensionsTests.TestIsComObject();

View file

@ -25,5 +25,10 @@ namespace PSTests
{
Assert.False(Platform.UsesCodeSignedAssemblies());
}
public static void TestHasDriveAutoMounting()
{
Assert.False(Platform.HasDriveAutoMounting());
}
}
}