class RSpec::Core::Notifications::SkippedExampleNotification

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

Returns:
  • (String) - The pending detail fully formatted in the way that
def fully_formatted(pending_number, colorizer=::RSpec::Core::Formatters::ConsoleCodes)
  formatted_caller = RSpec.configuration.backtrace_formatter.backtrace_line(example.location)
  [
    colorizer.wrap("\n  #{pending_number}) #{example.full_description}", :pending),
    "\n     ",
    Formatters::ExceptionPresenter::PENDING_DETAIL_FORMATTER.call(example, colorizer),
    "\n",
    colorizer.wrap("     # #{formatted_caller}\n", :detail)
  ].join("")
end