class RSpec::Core::OutputWrapper

@private

def initialize(output)

Other tags:
    Private: -
def initialize(output)
  @output = output
end

def method_missing(name, *args, &block)

def method_missing(name, *args, &block)
  output.send(name, *args, &block)
end

def respond_to?(name, priv=false)

def respond_to?(name, priv=false)
  output.respond_to?(name, priv)
end