mirror of
https://github.com/inspec/inspec
synced 2024-12-17 16:43:14 +00:00
2a1b1d8e88
Signed-off-by: Miah Johnson <miah@chia-pet.org>
9 lines
199 B
Ruby
9 lines
199 B
Ruby
if os.unix?
|
|
filename = '/tmp/example.json'
|
|
else
|
|
filename = 'c:/windows/temp/example.json'
|
|
end
|
|
|
|
describe json(filename) do
|
|
its(['cookbook_locks','omnibus','version']) { should eq('2.2.0') }
|
|
end
|