PowerShell/test/powershell/Get-UICulture.Tests.ps1
Andrew Schwartzmeyer bbebf2f76a Reorganize tests
- Pester source code moved to `test/Pester`, deleted `ext-src`.
- Pester tests (.ps1 files) moved to `test/powershell`
- xUnit tests (.cs files) moved to `test/csharp`
- Third-party script test moved to `test/shebang`
2016-01-14 17:00:06 -08:00

10 lines
317 B
PowerShell

Describe "Get-UICulture" {
It "Should return a type of CultureInfo as the name of the type" {
(Get-UICulture).GetType().Name | Should Match CultureInfo
}
It "Should have $ PsUICulture variable be equivalent to Get-UICulture object" {
(Get-UICulture).Name | Should Be $PsUICulture
}
}