class Minitest::MultipleAssertionError

Error raised when multiple assertions are grouped together.

Attributes

location[R]

Public Class Methods

new(msg = nil, location: nil, result_label: nil) click to toggle source
Calls superclass method
# File lib/aggregate_assertions/error.rb, line 8
def initialize(msg = nil, location: nil, result_label: nil)
  super(msg)
  @location = location
  @result_label = result_label
end

Public Instance Methods

result_label() click to toggle source
Calls superclass method
# File lib/aggregate_assertions/error.rb, line 14
def result_label
  @result_label || super
end