class CI::Reporter::MiniTestFailure
Public Class Methods
new(fault, meth)
click to toggle source
# File lib/ci/reporter/minitest.rb, line 40 def initialize(fault, meth) @fault = fault; @meth = meth end
Public Instance Methods
error?()
click to toggle source
# File lib/ci/reporter/minitest.rb, line 42 def error?() false end
failure?()
click to toggle source
# File lib/ci/reporter/minitest.rb, line 41 def failure?() true end
location()
click to toggle source
Calls superclass method
CI::Reporter::FailureCore#location
# File lib/ci/reporter/minitest.rb, line 45 def location() super @fault end
message()
click to toggle source
# File lib/ci/reporter/minitest.rb, line 44 def message() @fault.message end
name()
click to toggle source
# File lib/ci/reporter/minitest.rb, line 43 def name() @meth end