inspec/test/kitchen/policies/default/controls/os_env_spec.rb
Miah Johnson e8ae9012ea Move inspec-verify kitchen tests into more obvious directory
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-10-16 22:41:03 -07:00

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