PowerShell/test/powershell/Get-RunspaceDebug.Tests.ps1
2016-03-04 14:52:27 -08:00

11 lines
267 B
PowerShell

Describe "Get-RunspaceDebug" {
Context "Check return types of RunspaceDebug" {
It "Should return Microsoft.Powershell.Commands.PSRunspaceDebug as the return type" {
$rs = Get-RunspaceDebug
$rs[0].GetType().Name | Should Be PSRunspaceDebug
}
}
}