Created
June 12, 2018 20:51
-
-
Save ChrisLGardner/e140b6b4dd367b49ba221531ad615c6d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe "doing some testing" { | |
Get-Command -Module TunableSSLValidator | % { | |
It "Should not have any conflicting names for $($_.Name) function" { | |
(Get-Command $_.Name -All).count | Should -Not -BeGreaterThan 1 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment