inspec/test/fixtures/profiles/controls-option-test/controls/example.rb
Vasu1105 b180914889 Updated test for --controls option
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
2021-03-19 16:10:12 +05:30

30 lines
438 B
Ruby

control "foo" do
describe 'a thing' do
it { should cmp 'a thing' }
end
end
control "bar" do
puts 'bar'
describe 'a thing' do
it { should cmp 'a thing' }
end
end
control "11_pass" do
describe 'a thing' do
it { should cmp 'a thing' }
end
end
control "11_pass2" do
describe 'a thing' do
it { should cmp 'a thing' }
end
end
describe 'a thing' do
puts 'only-describe'
it { should cmp 'a thing' }
end