added environment variable tests

This commit is contained in:
Zachary Folwick 2015-08-24 11:38:32 -07:00
parent 864e32f331
commit 4ded5c5cd9

View file

@ -1,15 +1,21 @@
Describe "Test-Environment-Variables" {
It "Should have environment variable" {
It "Should have environment variables" {
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"
It "Should be able to access the members of the environment variable" {
$test = /usr/bin/whoami
$expected = "/" + $test
(Get-Item ENV:HOME).Value | Should Be $expected
(Get-Item ENV:HOSTNAME).Value | Should Not BeNullOrEmpty
(Get-Item ENV:PATH).Value | Should Not BeNullOrEmpty
}
It "Should be able to set the environment variables" {
{ $ENV:TESTENVIRONMENTVARIABLE = "this is a test environment variable" } | Should Not Throw
$ENV:TESTENVIRONMENTVARIABLE | Should Not BeNullOrEmpty
$ENV:TESTENVIRONMENTVARIABLE | Should Be "this is a test environment variable"
(ls ENV:HOME).Value | Should be "/root"
(ls ENV:HOSTNAME).Value | Should Not BeNullOrEmpty
(ls ENV:PATH).Value | Should Not BeNullOrEmpty
}
}