mirror of
https://github.com/inspec/inspec
synced 2024-12-20 10:03:28 +00:00
12 lines
159 B
Ruby
12 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
|