File size: 355 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 | # Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Describe "Get-Host DRT Unit Tests" -Tags "CI" {
It "Should works proper with get-host" {
$results = Get-Host
$results | Should -Be $Host
$results.PSObject.TypeNames[0] | Should -BeExactly "System.Management.Automation.Internal.Host.InternalHost"
}
}
|