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 18
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 10
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 14
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 22
def start_dump(notification)
  output.puts
end