Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PlagueHO/8404c2dc72042e99bc2b to your computer and use it in GitHub Desktop.
Save PlagueHO/8404c2dc72042e99bc2b to your computer and use it in GitHub Desktop.
Example DSC Resource Unit Tests for Set-TargetResource where exists and should but has a different description
Context 'Virtual Disk exists and should but has a different Description' {
Mock Get-iSCSIVirtualDisk -MockWith { return @($MockVirtualDisk) }
Mock New-iSCSIVirtualDisk
Mock Set-iSCSIVirtualDisk
Mock Remove-iSCSIVirtualDisk
It 'should not throw error' {
{
$Splat = $TestVirtualDisk.Clone()
$Splat.Description = 'Different'
Set-TargetResource @Splat
} | Should Not Throw
}
It 'should call expected Mocks' {
Assert-MockCalled -commandName Get-iSCSIVirtualDisk -Exactly 1
Assert-MockCalled -commandName New-iSCSIVirtualDisk -Exactly 0
Assert-MockCalled -commandName Set-iSCSIVirtualDisk -Exactly 1
Assert-MockCalled -commandName Remove-iSCSIVirtualDisk -Exactly 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment