mirror of
https://github.com/inspec/inspec
synced 2024-12-18 09:03:12 +00:00
659b4b373a
Signed-off-by: Miah Johnson <miah@chia-pet.org>
26 lines
545 B
Ruby
26 lines
545 B
Ruby
# copyright: 2015, The Authors
|
|
|
|
require_resource(profile: 'profile_c', resource: 'gordon_config', as: 'gordy_config')
|
|
|
|
describe gordy_config do
|
|
its('version') { should eq('1.0') }
|
|
end
|
|
|
|
control 'whichgordon' do
|
|
describe gordy_config do
|
|
its('version') { should eq('1.0') }
|
|
end
|
|
|
|
describe gordon_config do
|
|
its('version') { should eq('2.0') }
|
|
end
|
|
|
|
describe gordy_config do
|
|
its('version') { should eq(gordy_config.version) }
|
|
end
|
|
|
|
describe gordon_config do
|
|
its('version') { should eq(gordon_config.version) }
|
|
end
|
|
|
|
end
|