adds additional pssnapin test

This commit is contained in:
OCram85 2018-03-13 14:25:56 +01:00
parent a9a4967846
commit 5a4fcb4de5
1 changed files with 3 additions and 2 deletions

View File

@ -31,14 +31,15 @@ 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
}
It "Loading first PSSnaping should return true" {
$loaded | Should -Be $true
$Snap = Get-PSSnapin -Registered
$Snap | Format-List | Out-String | Write-Verbose -Verbose
Test-Module -Name $Snap.Name -Type PSSnapin | Should -Be $true
}
}
}