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
|
|
|
|
|
2021-03-18 08:42:55 +00:00
|
|
|
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
|
2021-03-18 16:07:48 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'a thing' do
|
2021-03-19 07:07:54 +00:00
|
|
|
puts 'only-describe'
|
2021-03-18 16:07:48 +00:00
|
|
|
it { should cmp 'a thing' }
|
|
|
|
end
|
|
|
|
|