@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