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)
  fully_formatted_header(pending_number, colorizer) << colorizer.wrap("     # #{formatted_caller}\n", :detail)
end