inspec/test/integration/default/controls/os_env_spec.rb
Tor Magnus Rakvåg ce70c13011 Typo in integration test (#3028)
Signed-off-by: Tor Magnus Rakvåg <tm@intility.no>
2018-05-09 15:15:48 -04:00

16 lines
378 B
Ruby

unless os.windows?
STDERR.puts "\033[1;33mTODO: Not running #{__FILE__} because we are not on Windows.\033[0m"
return
end
describe os_env('TEMP') do
its('content') {should eq 'C:\TEMPUSER' }
end
describe os_env('TEMP', 'system') do
its('content') { should eq 'C:\TEMPSYSTEM' }
end
describe os_env('TEMP', 'user') do
its('conten') { should eq 'C:\TEMPUSER'}
end