lib/cucumber/formatter/rerun.rb in aslakhellesoy-cucumber-0.2.0.1 vs lib/cucumber/formatter/rerun.rb in aslakhellesoy-cucumber-0.2.0.2
- old
+ new
@@ -1,6 +1,14 @@
module Cucumber
module Formatter
+ # This formatter keeps track of all failing features and print out their location.
+ # Example:
+ #
+ # features/foo.feature:34 features/bar.feature:11:76:81
+ #
+ # This formatter is used by AutoTest - it will use the output to decide what
+ # to run the next time, simply passing the output string on the command line.
+ #
class Rerun < Ast::Visitor
def initialize(step_mother, io, options)
super(step_mother)
@io = io
@file_names = []