mirror of
https://github.com/inspec/inspec
synced 2024-12-15 15:52:39 +00:00
e8ae9012ea
Signed-off-by: Miah Johnson <miah@chia-pet.org>
9 lines
177 B
Ruby
9 lines
177 B
Ruby
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
|