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

34 lines
974 B
PowerShell
Raw Normal View History

Describe "Test-Environment-Variables" {
2015-08-24 20:38:32 +02:00
It "Should have environment variables" {
2015-07-15 19:15:39 +02:00
Get-Item ENV: | Should Not BeNullOrEmpty
}
2015-08-24 20:38:32 +02:00
It "Should be able to access the members of the environment variable" {
2015-08-24 22:39:24 +02:00
$expected = /bin/bash -c "cd ~ && pwd"
2015-08-24 20:38:32 +02:00
(Get-Item ENV:HOME).Value | Should Be $expected
}
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"
2015-07-15 19:15:39 +02:00
}
It "Should contain /bin in the PATH" {
$ENV:PATH | Should Match "/bin"
}
It "Should have the correct HOSTNAME" {
$expected = /bin/bash -c hostname
$ENV:HOSTNAME | Should Be $expected
}
It "Should have a nonempty PATH" {
$ENV:PATH | Should Not BeNullOrEmpty
}
}