mirror of
https://github.com/inspec/inspec
synced 2024-12-17 08:33:21 +00:00
659b4b373a
Signed-off-by: Miah Johnson <miah@chia-pet.org>
10 lines
178 B
Ruby
10 lines
178 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
|