class RSpec::Core::Notifications::SkippedExampleNotification

@see ExampleNotification
@attr [RSpec::Core::Example] example the current example
things useful for specs that are skipped.
The ‘SkippedExampleNotification` extends `ExampleNotification` with

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)
end