inspec/test/unit/mock/profiles/profile-with-required-inputs/controls/include.rb
Clinton Wolfe 785888a209 Rename functional tests, unit tests, and test fixtures
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
2019-02-08 18:23:01 -05:00

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