Parent

Class/Module Index [+]

Quicksearch

Test::Unit::Assertions::AssertExceptionHelper::WrappedException

Attributes

exception[R]

Public Class Methods

new(exception) click to toggle source
# File lib/test/unit/assertions.rb, line 2079
def initialize(exception)
  @exception = exception
end

Public Instance Methods

inspect() click to toggle source
# File lib/test/unit/assertions.rb, line 2083
def inspect
  if default_inspect?
    "#{@exception.class.inspect}(<#{@exception.message}>)"
  else
    @exception.inspect
  end
end
method_missing(name, *args, &block) click to toggle source
# File lib/test/unit/assertions.rb, line 2091
def method_missing(name, *args, &block)
  @exception.__send__(name, *args, &block)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.