Exception: Minitest::Assertion
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Subclasses:
|
|
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
Exception
|
|
Instance Chain:
self,
Exception
|
|
Inherits: |
Exception
|
Defined in: | lib/minitest.rb |
Overview
Represents run failures.
Instance Method Summary
-
#location
Where was this run before an assertion was raised?
- #error Internal use only
- #result_code Internal use only
- #result_label Internal use only
Instance Method Details
#error
This method is for internal use only.
[ GitHub ]
# File 'lib/minitest.rb', line 939
def error # :nodoc: self end
#location
Where was this run before an assertion was raised?
# File 'lib/minitest.rb', line 946
def location last_before_assertion = "" self.backtrace.reverse_each do |s| break if s =~ /in .(assert|refute|flunk|pass|fail|raise|must|wont)/ last_before_assertion = s end last_before_assertion.sub(/:in .*$/, "") end
#result_code
This method is for internal use only.
[ GitHub ]
# File 'lib/minitest.rb', line 955
def result_code # :nodoc: result_label[0, 1] end
#result_label
This method is for internal use only.
[ GitHub ]
# File 'lib/minitest.rb', line 959
def result_label # :nodoc: "Failure" end