2021-03-18 08:42:55 +00:00
|
|
|
# copyright: 2018, The Authors
|
|
|
|
|
2021-03-17 14:30:15 +00:00
|
|
|
control "foo" do
|
|
|
|
describe 'a thing' do
|
|
|
|
it { should cmp 'a thing' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
control "bar" do
|
2021-03-18 08:42:55 +00:00
|
|
|
puts 'bar'
|
2021-03-17 14:30:15 +00:00
|
|
|
describe 'a thing' do
|
|
|
|
it { should cmp 'a thing' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
control "baz" do
|
2021-03-18 08:42:55 +00:00
|
|
|
puts 'baz'
|
|
|
|
describe 'a thing' do
|
|
|
|
it { should cmp 'a thing' }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
control "11_pass" do
|
2021-03-17 14:30:15 +00:00
|
|
|
describe 'a thing' do
|
|
|
|
it { should cmp 'a thing' }
|
|
|
|
end
|
|
|
|
end
|
2021-03-18 08:42:55 +00:00
|
|
|
|
|
|
|
control "11_pass2" do
|
|
|
|
describe 'a thing' do
|
|
|
|
it { should cmp 'a thing' }
|
|
|
|
end
|
|
|
|
end
|