mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
db8e6e7415
Signed-off-by: Ryan Davis <zenspider@chef.io>
11 lines
155 B
Ruby
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
|