mirror of
https://github.com/inspec/inspec
synced 2024-12-20 10:03:28 +00:00
785888a209
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
11 lines
159 B
Ruby
11 lines
159 B
Ruby
cis_level = attribute('cis_level')
|
|
|
|
control 'control1' do
|
|
title 'title'
|
|
|
|
only_if { cis_level == 2 }
|
|
|
|
describe true do
|
|
it { should eq true}
|
|
end
|
|
end
|