producer-core/features/steps/execution_steps.rb
Thibault Jouan 9323391161 Remove cucumber monkey patch translating steps:
It was initially added to allow reuse of aruba cucumber steps, using
`must' instead of `should'. This is creating more harm than good, hence
we remove it and implements all missing steps, using aruba API.
2014-04-23 22:44:27 +00:00

4 lines
98 B
Ruby

Then /^the exit status must be (\d+)$/ do |exit_status|
assert_exit_status exit_status.to_i
end