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

10 lines
301 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" {
(Get-RunspaceDebug).GetType() | Should Be Microsoft.Powershell.Commands.PSRunspaceDebug
}
}
}