debian-mirror-gitlab/features/support/rerun.rb

17 lines
527 B
Ruby
Raw Normal View History

2016-06-02 11:05:42 +05:30
# The spinach-rerun-reporter doesn't define the on_undefined_step
# See it here: https://github.com/javierav/spinach-rerun-reporter/blob/master/lib/spinach/reporter/rerun.rb
2016-11-03 12:29:30 +05:30
require 'spinach-rerun-reporter'
2016-06-02 11:05:42 +05:30
module Spinach
class Reporter
class Rerun
def on_undefined_step(step_data, failure, step_definitions = nil)
super step_data, failure, step_definitions
# save feature file and scenario line
@rerun << "#{current_feature.filename}:#{current_scenario.line}"
end
end
end
end