inspec/test/fixtures/profiles/profile-with-required-inputs/controls/include.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

11 lines
155 B
Ruby

cis_level = input('cis_level')
control 'control1' do
title 'title'
only_if { cis_level == 2 }
describe true do
it { should eq true}
end
end