Exception: Minitest::Assertion

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

Overview

Represents run failures.

Direct Known Subclasses

Skip, UnexpectedError

Instance Method Summary collapse

Instance Method Details

#errorObject

:nodoc:



944
945
946
# File 'lib/minitest.rb', line 944

def error # :nodoc:
  self
end

#locationObject

Where was this run before an assertion was raised?



951
952
953
954
955
956
957
958
# File 'lib/minitest.rb', line 951

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_codeObject

:nodoc:



960
961
962
# File 'lib/minitest.rb', line 960

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

#result_labelObject

:nodoc:



964
965
966
# File 'lib/minitest.rb', line 964

def result_label # :nodoc:
  "Failure"
end