Class: Cucumber::Formatter::Progress
- Inherits:
-
Ast::Visitor
- Object
- Ast::Visitor
- Cucumber::Formatter::Progress
- Includes:
- Console
- Defined in:
- lib/cucumber/formatter/progress.rb
Direct Known Subclasses
Constant Summary
Constants included from Console
Constants included from ANSIColor
Instance Attribute Summary
Attributes inherited from Ast::Visitor
Instance Method Summary collapse
-
#initialize(step_mother, io, options) ⇒ Progress
constructor
A new instance of Progress.
- #visit_feature_element(feature_element) ⇒ Object
- #visit_features(features) ⇒ Object
- #visit_step_result(keyword, step_match, multiline_arg, status, exception, source_indent, background) ⇒ Object
- #visit_table_cell_value(value, status) ⇒ Object
Methods included from Console
#announce, #format_step, #format_string, #print_counts, #print_elements, #print_exception, #print_passing_wip, #print_snippets, #print_stats, #print_steps, #print_tag_limit_warnings, #record_tag_occurrences
Methods included from ANSIColor
define_grey, define_real_grey, #grey
Methods included from Duration
Methods inherited from Ast::Visitor
#announce, #matches_scenario_names?, #visit_background, #visit_background_name, #visit_comment, #visit_comment_line, #visit_examples, #visit_examples_array, #visit_examples_name, #visit_exception, #visit_feature, #visit_feature_name, #visit_multiline_arg, #visit_outline_table, #visit_py_string, #visit_scenario_name, #visit_step, #visit_step_name, #visit_steps, #visit_table_cell, #visit_table_row, #visit_tag_name, #visit_tags
Constructor Details
#initialize(step_mother, io, options) ⇒ Progress
Returns a new instance of Progress.
8 9 10 11 12 |
# File 'lib/cucumber/formatter/progress.rb', line 8 def initialize(step_mother, io, ) super(step_mother) @io = io @options = end |
Instance Method Details
#visit_feature_element(feature_element) ⇒ Object
21 22 23 24 |
# File 'lib/cucumber/formatter/progress.rb', line 21 def visit_feature_element(feature_element) record_tag_occurrences(feature_element, @options) super end |
#visit_features(features) ⇒ Object
14 15 16 17 18 19 |
# File 'lib/cucumber/formatter/progress.rb', line 14 def visit_features(features) super @io.puts @io.puts print_summary(features) end |
#visit_step_result(keyword, step_match, multiline_arg, status, exception, source_indent, background) ⇒ Object
26 27 28 29 |
# File 'lib/cucumber/formatter/progress.rb', line 26 def visit_step_result(keyword, step_match, multiline_arg, status, exception, source_indent, background) progress(status) @status = status end |
#visit_table_cell_value(value, status) ⇒ Object
31 32 33 34 |
# File 'lib/cucumber/formatter/progress.rb', line 31 def visit_table_cell_value(value, status) status ||= @status progress(status) unless table_header_cell?(status) end |