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

43 lines
1.1 KiB
PowerShell
Raw Normal View History

2015-10-23 01:35:31 +02:00
Describe "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
}
It "Should have a nonempty PATH" {
$ENV:PATH | Should Not BeNullOrEmpty
}
It "Should contain /bin in the PATH" {
if ($ENV:TEMP -eq "/tmp" )
{
$ENV:PATH | Should Match "/bin"
}
else
{
$ENV:PATH | Should Match "C:"
}
}
It "Should have the correct HOME" {
if ($ENV:TEMP -eq "/tmp" )
{
$expected = /bin/bash -c "cd ~ && pwd"
$ENV:HOME | Should Be $expected
}
else
{
$expected = "\Users\" + $ENV:USERNAME
$ENV:HOMEPATH | Should Be $expected
}
2015-08-24 20:38:32 +02:00
}
It "Should be able to set the environment variables" {
2015-08-25 19:15:21 +02:00
$expected = "this is a test environment variable"
{ $ENV:TESTENVIRONMENTVARIABLE = $expected } | Should Not Throw
2015-08-24 20:38:32 +02:00
$ENV:TESTENVIRONMENTVARIABLE | Should Not BeNullOrEmpty
2015-08-25 19:15:21 +02:00
$ENV:TESTENVIRONMENTVARIABLE | Should Be $expected
2015-07-15 19:15:39 +02:00
}
}