fix snapin test logic

This commit is contained in:
OCram85 2018-03-13 14:21:49 +01:00
parent 64f1f05c76
commit a9a4967846
1 changed files with 1 additions and 1 deletions

View File

@ -31,11 +31,11 @@ Describe "Test-ModuleName" {
}
}
Context "Working with PSSnapins" {
$loaded = $null
It "Loading first PSSnaping should not throw " {
$Snap = Get-PSSnapin -Registered
$Snap | Format-List | Out-String | Write-Verbose -Verbose
{ $loaded = Test-Module -Name $Snap.Name -Type PSSnapin } | Should -Not -Throw
Remove-PSSnapin -Name $Snap.Name
}
It "Loading first PSSnaping should return true" {
$loaded | Should -Be $true