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(exception) ⇒ UnexpectedError

:nodoc:



856
857
858
859
# File 'lib/minitest.rb', line 856

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

Instance Attribute Details

#exceptionObject

:nodoc:



854
855
856
# File 'lib/minitest.rb', line 854

def exception
  @exception
end

Instance Method Details

#backtraceObject

:nodoc:



861
862
863
# File 'lib/minitest.rb', line 861

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

#errorObject

:nodoc:



865
866
867
# File 'lib/minitest.rb', line 865

def error # :nodoc:
  self.exception
end

#messageObject

:nodoc:



869
870
871
872
# File 'lib/minitest.rb', line 869

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

#result_labelObject

:nodoc:



874
875
876
# File 'lib/minitest.rb', line 874

def result_label # :nodoc:
  "Error"
end