Class: Test::Unit::Assertions::AssertExceptionHelper::WrappedException
- Inherits:
-
Object
- Object
- Test::Unit::Assertions::AssertExceptionHelper::WrappedException
- Defined in:
- lib/test/unit/assertions.rb,
lib/test/unit/assertions.rb,
lib/test/unit/assertions.rb,
lib/test/unit/assertions.rb,
lib/test/unit/assertions.rb,
lib/test/unit/assertions.rb
Instance Attribute Summary collapse
-
#exception ⇒ Object
readonly
Returns the value of attribute exception.
Instance Method Summary collapse
-
#initialize(exception) ⇒ WrappedException
constructor
A new instance of WrappedException.
-
#inspect ⇒ Object
-
#method_missing(name, *args, &block) ⇒ Object
Constructor Details
#initialize(exception) ⇒ WrappedException
Returns a new instance of WrappedException
2106 2107 2108 |
# File 'lib/test/unit/assertions.rb', line 2106 def initialize(exception) @exception = exception end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Object
2118 2119 2120 |
# File 'lib/test/unit/assertions.rb', line 2118 def method_missing(name, *args, &block) @exception.__send__(name, *args, &block) end |
Instance Attribute Details
#exception ⇒ Object (readonly)
Returns the value of attribute exception
2105 2106 2107 |
# File 'lib/test/unit/assertions.rb', line 2105 def exception @exception end |
Instance Method Details
#inspect ⇒ Object
2110 2111 2112 2113 2114 2115 2116 |
# File 'lib/test/unit/assertions.rb', line 2110 def inspect if default_inspect? "#{@exception.class.inspect}(<#{@exception.}>)" else @exception.inspect end end |