Method: RSpec::Core::Notifications::SkippedExampleNotification#fully_formatted
- Defined in:
- lib/rspec/core/notifications.rb
permalink #fully_formatted(pending_number, colorizer = ::RSpec::Core::Formatters::ConsoleCodes) ⇒ String
Returns The pending detail fully formatted in the way that RSpec's built-in formatters emit.
235 236 237 238 239 240 241 242 243 244 245 |
# File 'lib/rspec/core/notifications.rb', line 235 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 |