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
389 B
Ruby
13 lines
389 B
Ruby
control 'child-01-control-01' do
|
|
describe input('test-01') do
|
|
# This is an independent value, inheritance-child-01/test-01
|
|
it { should cmp 'value-from-child-01-metadata' }
|
|
end
|
|
end
|
|
|
|
control 'child-01-control-02' do
|
|
describe input('test-02') do
|
|
# This value was set by the wrapper, inheritance-child-01/test-02
|
|
it { should cmp 'value-from-wrapper-metadata' }
|
|
end
|
|
end
|