inspec/test/fixtures/profiles/exception-in-control/controls/03-syntax.rb
Ryan Davis db8e6e7415 Moved test/unit/mock/* to test/fixtures
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-11-08 16:29:03 -08:00

9 lines
No EOL
179 B
Ruby

title 'Test case 3 for exceptions controls'
control 'a control with an undefined method' do
plowshares = swords.beat
end
control 'a control with a divide-by-zero' do
1/0
end