mirror of
https://github.com/inspec/inspec
synced 2025-01-20 17:14:23 +00:00
2495fd8196
Signed-off-by: Omar J Irizarry <irizarry_omar_j@network.lilly.com>
16 lines
377 B
Ruby
16 lines
377 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
|
|
|
|
descibe 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
|