Class: Test::Unit::Error
- Inherits:
-
Object
- Object
- Test::Unit::Error
- Defined in:
- lib/deep_test/test/extensions/error.rb
Instance Method Summary collapse
Instance Method Details
#make_exception_marshallable ⇒ Object
8 9 10 11 |
# File 'lib/deep_test/test/extensions/error.rb', line 8 def make_exception_marshallable return if @exception.kind_of?(DeepTest::MarshallableExceptionWrapper) @exception = DeepTest::MarshallableExceptionWrapper.new(@exception) end |
#resolve_marshallable_exception ⇒ Object
4 5 6 |
# File 'lib/deep_test/test/extensions/error.rb', line 4 def resolve_marshallable_exception @exception = @exception.resolve if @exception.kind_of?(DeepTest::MarshallableExceptionWrapper) end |