2014-04-01 02:51:27 +00:00

19 lines
381 B
Ruby

module Cucumber
class Runtime
alias :old_step_match :step_match
def step_match(step_name, name_to_report = nil)
if step_name.include? ' must '
name_to_report = step_name.dup
step_name.gsub! ' must ', ' should '
end
old_step_match(step_name, name_to_report)
end
end
end
require 'aruba/cucumber'
require 'cucumber/sshd/cucumber'