Exception: Minitest::UnexpectedError

Inherits:
Assertion show all
Defined in:
lib/minitest.rb

Overview

Assertion wrapping an unexpected error that was raised during a run.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Assertion

#location, #result_code

Constructor Details

#initialize(error) ⇒ UnexpectedError

:nodoc:



985
986
987
988
# File 'lib/minitest.rb', line 985

def initialize error # :nodoc:
  super "Unexpected exception"
  self.error = error
end

Instance Attribute Details

#errorObject

TODO: figure out how to use ‘cause` instead



983
984
985
# File 'lib/minitest.rb', line 983

def error
  @error
end

Instance Method Details

#backtraceObject

:nodoc:



990
991
992
# File 'lib/minitest.rb', line 990

def backtrace # :nodoc:
  self.error.backtrace
end

#messageObject

:nodoc:



994
995
996
997
# File 'lib/minitest.rb', line 994

def message # :nodoc:
  bt = Minitest.filter_backtrace(self.backtrace).join "\n    "
  "#{self.error.class}: #{self.error.message}\n    #{bt}"
end

#result_labelObject

:nodoc:



999
1000
1001
# File 'lib/minitest.rb', line 999

def result_label # :nodoc:
  "Error"
end