inspec/test/integration/default/yaml_spec.rb
2016-03-18 11:30:54 +01:00

11 lines
196 B
Ruby

# encoding: utf-8
if os.unix?
filename = '/tmp/example.yml'
else
filename = 'c:/windows/temp/example.yml'
end
describe yaml(filename) do
its(['driver','name']) { should eq('vagrant') }
end