PowerShell/src/pester-tests/Test-Environment-Variables.Tests.ps1

16 lines
598 B
PowerShell
Raw Normal View History

Describe "Test-Environment-Variables" {
2015-07-15 19:15:39 +02:00
It "Should have environment variable" {
Get-Item ENV: | Should Not BeNullOrEmpty
}
It "Should be able to access the members of the environment variable in two ways" {
(Get-Item ENV:HOME).Value | Should be "/root"
2015-07-24 19:38:51 +02:00
(Get-Item ENV:HOSTNAME).Value | Should Not BeNullOrEmpty
(Get-Item ENV:PATH).Value | Should Not BeNullOrEmpty
(ls ENV:HOME).Value | Should be "/root"
2015-07-24 19:38:51 +02:00
(ls ENV:HOSTNAME).Value | Should Not BeNullOrEmpty
(ls ENV:PATH).Value | Should Not BeNullOrEmpty
2015-07-15 19:15:39 +02:00
}
}