mirror of
https://github.com/inspec/inspec
synced 2024-12-22 11:03:11 +00:00
9b7c292d4c
Helps testing and lots of other things if we only use $stdout/$stderr. STDOUT/STDERR should only be used to restore the globals. Signed-off-by: Ryan Davis <zenspider@chef.io>
16 lines
379 B
Ruby
16 lines
379 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
|