class RSpec::Core::Notifications::SummaryNotification

def fully_formatted(colorizer=::RSpec::Core::Formatters::ConsoleCodes)

Returns:
  • (String) - The summary information fully formatted in the way that
def fully_formatted(colorizer=::RSpec::Core::Formatters::ConsoleCodes)
  formatted = "\nFinished in #{formatted_duration} " \
              "(files took #{formatted_load_time} to load)\n" \
              "#{colorized_totals_line(colorizer)}\n"
  unless failed_examples.empty?
    formatted << colorized_rerun_commands(colorizer) << "\n"
  end
  formatted
end