mirror of
https://github.com/inspec/inspec
synced 2024-12-20 10:03:28 +00:00
b180914889
Signed-off-by: Vasu1105 <vasundhara.jagdale@chef.io>
30 lines
438 B
Ruby
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
|
|
|