class Test::Unit::Error

Public Instance Methods

make_exception_marshallable() click to toggle source
# 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() click to toggle source
# File lib/deep_test/test/extensions/error.rb, line 4
def resolve_marshallable_exception
  @exception = @exception.resolve if @exception.kind_of?(DeepTest::MarshallableExceptionWrapper)
end