module RSpec::Core::Notifications::PendingExampleNotificationMethods
@private
Private Instance Methods
fully_formatted_header(pending_number, colorizer=::RSpec::Core::Formatters::ConsoleCodes)
click to toggle source
# File lib/rspec/core/notifications.rb, line 323 def fully_formatted_header(pending_number, colorizer=::RSpec::Core::Formatters::ConsoleCodes) colorizer.wrap("\n #{pending_number}) #{example.full_description}\n", :pending) << colorizer.wrap(" # #{example.execution_result.pending_message}\n", :detail) end