class Cucumber::Formatter::Hydra
Hydra
formatter for cucumber. Stifles all output except error messages Based on the
Public Instance Methods
after_features(features)
click to toggle source
Removed the extra newlines here
# File lib/hydra/cucumber/formatter.rb, line 10 def after_features(features) print_summary(features) end
Private Instance Methods
print_summary(features)
click to toggle source
Removed the file statistics
# File lib/hydra/cucumber/formatter.rb, line 17 def print_summary(features) print_steps(:pending) print_steps(:failed) print_snippets(@options) print_passing_wip(@options) end
progress(status)
click to toggle source
Removed all progress output
# File lib/hydra/cucumber/formatter.rb, line 25 def progress(status) end