class RSpec::Core::Formatters::ProgressFormatter

@private

Public Instance Methods

example_failed(_notification) click to toggle source
# File lib/rspec/core/formatters/progress_formatter.rb, line 19
def example_failed(_notification)
  output.print ConsoleCodes.wrap('F', :failure)
end
example_passed(_notification) click to toggle source
# File lib/rspec/core/formatters/progress_formatter.rb, line 11
def example_passed(_notification)
  output.print ConsoleCodes.wrap('.', :success)
end
example_pending(_notification) click to toggle source
# File lib/rspec/core/formatters/progress_formatter.rb, line 15
def example_pending(_notification)
  output.print ConsoleCodes.wrap('*', :pending)
end
start_dump(_notification) click to toggle source
# File lib/rspec/core/formatters/progress_formatter.rb, line 23
def start_dump(_notification)
  output.puts
end