Increase code coverage #22

Merged
OCram85 merged 34 commits from dev into master 2018-03-21 12:16:09 +01:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 5a4fcb4de5 - Show all commits

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
}
}
}