Exception: Minitest::Assertion

Inherits:
Exception
  • Object
show all
Defined in:
lib/minitest.rb

Overview

Represents run failures.

Direct Known Subclasses

Skip, UnexpectedError, UnexpectedWarning

Constant Summary collapse

RE =

:nodoc:

/in [`'](?:[^']+[#.])?(?:assert|refute|flunk|pass|fail|raise|must|wont)/

Instance Method Summary collapse

Instance Method Details

#errorObject

:nodoc:



1039
1040
1041
# File 'lib/minitest.rb', line 1039

def error # :nodoc:
  self
end

#locationObject

Where was this run before an assertion was raised?



1046
1047
1048
1049
1050
1051
1052
# File 'lib/minitest.rb', line 1046

def location
  bt  = Minitest.filter_backtrace self.backtrace
  idx = bt.rindex { |s| s.match? RE } || -1 # fall back to first item
  loc = bt[idx+1] || bt.last || "unknown:-1"

  loc.sub(/:in .*$/, "")
end

#result_codeObject

:nodoc:



1054
1055
1056
# File 'lib/minitest.rb', line 1054

def result_code # :nodoc:
  result_label[0, 1]
end

#result_labelObject

:nodoc:



1058
1059
1060
# File 'lib/minitest.rb', line 1058

def result_label # :nodoc:
  "Failure"
end