mirror of
https://github.com/inspec/inspec
synced 2025-03-07 08:47:29 +00:00
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
|
|
|