@private
# File lib/rspec/core/formatters/progress_formatter.rb, line 18 def example_failed(notification) output.print ConsoleCodes.wrap('F', :failure) end
# File lib/rspec/core/formatters/progress_formatter.rb, line 10 def example_passed(notification) output.print ConsoleCodes.wrap('.', :success) end
# File lib/rspec/core/formatters/progress_formatter.rb, line 14 def example_pending(notification) output.print ConsoleCodes.wrap('*', :pending) end
# File lib/rspec/core/formatters/progress_formatter.rb, line 22 def start_dump(notification) output.puts end