mirror of
https://github.com/inspec/inspec
synced 2025-01-22 09:55:30 +00:00
db8e6e7415
Signed-off-by: Ryan Davis <zenspider@chef.io>
13 lines
401 B
Ruby
13 lines
401 B
Ruby
# inheritance-child-01 is a simple dependency
|
|
include_controls('inheritance-child-01')
|
|
|
|
# inheritance-child-02 is an aliased dependency
|
|
include_controls('inheritance-child-02-aliased')
|
|
|
|
control 'wrapper-control-01' do
|
|
describe input('test-01') do
|
|
# This is an independent value, inheritance-wrapper/test-01
|
|
it { should cmp 'value-from-wrapper-metadata' }
|
|
end
|
|
input_object('test-01')
|
|
end
|