Sha256: 12e55a181f661399925b616ad4514e3bd1533dc44d96ade8b349ee6e0cc0ac97
Contents?: true
Size: 682 Bytes
Versions: 7059
Compression:
Stored size: 682 Bytes
Contents
module RSpec module Core module Formatters # @api private # Formatter for providing message output as a fallback when no other # profiler implements #message class FallbackMessageFormatter Formatters.register self, :message def initialize(output) @output = output end # @private attr_reader :output # @api public # # Used by the reporter to send messages to the output stream. # # @param notification [MessageNotification] containing message def message(notification) output.puts notification.message end end end end end
Version data entries
7,059 entries across 6,977 versions & 125 rubygems