class RSpec::Core::OutputWrapper
@private
Attributes
@private
Public Class Methods
Source
# File lib/rspec/core/output_wrapper.rb, line 9 def initialize(output) @output = output end
@private
Public Instance Methods
Source
# File lib/rspec/core/output_wrapper.rb, line 17 def method_missing(name, *args, &block) output.__send__(name, *args, &block) end
Source
# File lib/rspec/core/output_wrapper.rb, line 13 def respond_to?(name, priv=false) output.respond_to?(name, priv) end