PowerShell/test/powershell/PSVersionTable.Tests.ps1

31 lines
1 KiB
PowerShell
Raw Normal View History

Describe "PSVersionTable" {
2015-07-21 02:18:06 +02:00
It "Should have version table entries" {
$PSVersionTable.Count | Should Be 8
2015-07-21 02:18:06 +02:00
}
It "Should have the right version table entries" {
$PSVersionTable.ContainsKey("PSVersion") | Should Be True
$PSVersionTable.ContainsKey("PSEdition") | Should Be True
$PSVersionTable.ContainsKey("WSManStackVersion") | Should Be True
$PSVersionTable.ContainsKey("SerializationVersion") | Should Be True
$PSVersionTable.ContainsKey("CLRVersion") | Should Be True
$PSVersionTable.ContainsKey("BuildVersion") | Should Be True
$PSVersionTable.ContainsKey("PSCompatibleVersions") | Should Be True
$PSVersionTable.ContainsKey("PSRemotingProtocolVersion") | Should Be True
2015-07-21 02:18:06 +02:00
}
It "Should have the correct edition" -Skip:(!$IsCore) {
$expected =
if ($IsLinux -Or $IsOSX) {
"Linux"
} elseif ($IsWindows) {
"Core"
} else {
throw [PlatformNotSupportedException]
}
$PSVersionTable["PSEdition"] | Should Be $expected
}
2015-07-21 02:18:06 +02:00
}