/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/powershell/Modules/Microsoft.PowerShell.Utility/Get-RunspaceDebug.Tests.ps1
13 строк
476 B
Paul Higinbotham
Fix tests to not write errors to console (#13010)
24 июн 2020, 00:07
Не верифицирован
24 июн 2020, 00:07
7b4e80f
Код
Авторство
О чём код?
# 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 } } }