Exception: Minitest::UnexpectedError
- Defined in:
- lib/minitest.rb
Overview
Assertion wrapping an unexpected error that was raised during a run.
Instance Attribute Summary collapse
-
#exception ⇒ Object
:nodoc:.
Instance Method Summary collapse
-
#backtrace ⇒ Object
:nodoc:.
-
#error ⇒ Object
:nodoc:.
-
#initialize(exception) ⇒ UnexpectedError
constructor
:nodoc:.
-
#message ⇒ Object
:nodoc:.
-
#result_label ⇒ Object
:nodoc:.
Methods inherited from Assertion
Constructor Details
#initialize(exception) ⇒ UnexpectedError
:nodoc:
667 668 669 670 |
# File 'lib/minitest.rb', line 667 def initialize exception # :nodoc: super self.exception = exception end |
Instance Attribute Details
#exception ⇒ Object
:nodoc:
665 666 667 |
# File 'lib/minitest.rb', line 665 def exception @exception end |
Instance Method Details
#backtrace ⇒ Object
:nodoc:
672 673 674 |
# File 'lib/minitest.rb', line 672 def backtrace # :nodoc: self.exception.backtrace end |
#error ⇒ Object
:nodoc:
676 677 678 |
# File 'lib/minitest.rb', line 676 def error # :nodoc: self.exception end |
#message ⇒ Object
:nodoc:
680 681 682 683 |
# File 'lib/minitest.rb', line 680 def # :nodoc: bt = Minitest::filter_backtrace(self.backtrace).join "\n " "#{self.exception.class}: #{self.exception.}\n #{bt}" end |
#result_label ⇒ Object
:nodoc:
685 686 687 |
# File 'lib/minitest.rb', line 685 def result_label # :nodoc: "Error" end |