class RSpec::Core::OutputWrapper

@private

Attributes

output[RW]

@private

Public Class Methods

new(output) click to toggle source

@private

# File lib/rspec/core/output_wrapper.rb, line 9
def initialize(output)
  @output = output
end

Public Instance Methods

method_missing(name, *args, &block) click to toggle source
# File lib/rspec/core/output_wrapper.rb, line 17
def method_missing(name, *args, &block)
  output.send(name, *args, &block)
end
respond_to?(name, priv=false) click to toggle source
# File lib/rspec/core/output_wrapper.rb, line 13
def respond_to?(name, priv=false)
  output.respond_to?(name, priv)
end