inspec/test/kitchen/policies/default/controls/toml_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

11 lines
253 B
Ruby

if os.unix?
filename = '/tmp/example.toml'
else
filename = 'c:/windows/temp/example.toml'
end
describe toml(filename) do
its ('key') { should eq('value') }
its (['arr', 1]) { should eq 2 }
its (['mytable', 'key1']) { should eq 'value1' }
end