lib/cucumber/formatter/progress.rb in aslakhellesoy-cucumber-0.3.7.1 vs lib/cucumber/formatter/progress.rb in aslakhellesoy-cucumber-0.3.7.2
- old
+ new
@@ -13,11 +13,11 @@
def visit_features(features)
super
@io.puts
@io.puts
- print_summary
+ print_summary(features)
end
def visit_step_result(keyword, step_match, multiline_arg, status, exception, source_indent, background)
progress(status)
@status = status
@@ -28,13 +28,13 @@
progress(status) unless table_header_cell?(status)
end
private
- def print_summary
+ def print_summary(features)
print_steps(:pending)
print_steps(:failed)
- print_counts
+ print_stats(features)
print_snippets(@options)
print_passing_wip(@options)
end
CHARS = {