inspec/test/fixtures/profiles/inputs/inheritance/wrapper/controls/wrapper-controls.rb
Ryan Davis db8e6e7415 Moved test/unit/mock/* to test/fixtures
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-11-08 16:29:03 -08:00

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