The formatter used for --format progress
# File lib/cucumber/formatter/progress.rb, line 30 def after_feature_element(*args) progress(:failed) if (defined? @exception_raised) and (@exception_raised) @exception_raised = false end
# File lib/cucumber/formatter/progress.rb, line 20 def after_features(features) @io.puts @io.puts print_summary(features) end
# File lib/cucumber/formatter/progress.rb, line 53 def after_outline_table(outline_table) @outline_table = nil end
# File lib/cucumber/formatter/progress.rb, line 44 def after_step_result(keyword, step_match, multiline_arg, status, exception, source_indent, background, file_colon_line) progress(status) @status = status end
# File lib/cucumber/formatter/progress.rb, line 40 def after_steps(*args) @exception_raised = false end
# File lib/cucumber/formatter/progress.rb, line 26 def before_feature_element(*args) @exception_raised = false end
# File lib/cucumber/formatter/progress.rb, line 16 def before_features(features) print_profile_information end
# File lib/cucumber/formatter/progress.rb, line 49 def before_outline_table(outline_table) @outline_table = outline_table end
# File lib/cucumber/formatter/progress.rb, line 35 def before_steps(*args) progress(:failed) if (defined? @exception_raised) and (@exception_raised) @exception_raised = false end
Generated with the Darkfish Rdoc Generator 2.