File size: 476 Bytes
8c763fb
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Describe "Get-RunspaceDebug" -Tags "CI" {

    Context "Check return types of RunspaceDebug" {

        It "Should return Microsoft.Powershell.Commands.PSRunspaceDebug as the return type" {
            $rs = Get-RunspaceDebug -ErrorAction SilentlyContinue
            $rs | Should -Not -BeNullOrEmpty
            $rs[0] | Should -BeOfType Microsoft.PowerShell.Commands.PSRunspaceDebug
        }
    }
}