mirror of
https://github.com/inspec/inspec
synced 2024-12-02 17:40:00 +00:00
47eabbb221
Signed-off-by: Christoph Hartmann <chris@lollyrock.com>
11 lines
218 B
Ruby
11 lines
218 B
Ruby
# encoding: utf-8
|
|
|
|
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
|