PowerShell/test/powershell/Get-RunspaceDebug.Tests.ps1

11 lines
299 B
PowerShell
Raw Normal View History

Describe "Get-RunspaceDebug" {
Context "Check return types of RunspaceDebug" {
It "Should return Microsoft.Powershell.Commands.PSRunspaceDebug as the return type" {
2016-02-05 23:57:08 +01:00
$rs = Get-RunspaceDebug
$rs[0].GetType().Name | Should Be PSRunspaceDebug
}
}
}