diff --git a/src/monad b/src/monad index 3ca3331f4..3196b5e00 160000 --- a/src/monad +++ b/src/monad @@ -1 +1 @@ -Subproject commit 3ca3331f4bba19ed57595c173264a267878e0b65 +Subproject commit 3196b5e0024efbba11bf58473dd8d42f7c8cad4f diff --git a/src/ps_test/ps_test.cs b/src/ps_test/ps_test.cs index 9f0b80825..e85f2bf9b 100644 --- a/src/ps_test/ps_test.cs +++ b/src/ps_test/ps_test.cs @@ -13,6 +13,7 @@ namespace PSTests PlatformTests.TestHasCom(); PlatformTests.TestHasAmsi(); PlatformTests.TestUsesCodeSignedAssemblies(); + PlatformTests.TestHasDriveAutoMounting(); PSTypeExtensionsTests.TestIsComObject(); diff --git a/src/ps_test/test_CorePsPlatform.cs b/src/ps_test/test_CorePsPlatform.cs index dac4d3b3a..a5a2b724e 100644 --- a/src/ps_test/test_CorePsPlatform.cs +++ b/src/ps_test/test_CorePsPlatform.cs @@ -25,5 +25,10 @@ namespace PSTests { Assert.False(Platform.UsesCodeSignedAssemblies()); } + + public static void TestHasDriveAutoMounting() + { + Assert.False(Platform.HasDriveAutoMounting()); + } } }