2015-11-06 07:19:04 +00:00
|
|
|
Describe "Get-UICulture" {
|
2015-11-06 07:46:40 +00:00
|
|
|
It "Should return a type of CultureInfo as the name of the type" {
|
2016-03-04 22:52:27 +00:00
|
|
|
(Get-UICulture).GetType().Name | Should Match CultureInfo
|
2015-11-06 07:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
It "Should have $ PsUICulture variable be equivalent to Get-UICulture object" {
|
2016-03-04 22:52:27 +00:00
|
|
|
(Get-UICulture).Name | Should Be $PsUICulture
|
2015-11-06 07:19:04 +00:00
|
|
|
}
|
|
|
|
}
|