class RSpec::Core::Formatters::FallbackMessageFormatter

profiler implements #message
Formatter for providing message output as a fallback when no other
@api private

def initialize(output)

def initialize(output)
  @output = output
end

def message(notification)

Parameters:
  • notification (MessageNotification) -- containing message

Other tags:
    Api: - public
def message(notification)
  output.puts notification.message
end