Skip to Content Skip to Search

class ActiveSupport::ErrorReporter::TestHelper::ErrorSubscriber

Attributes

[R] events

Public class methods

Source code GitHub
# File activesupport/lib/active_support/error_reporter/test_helper.rb, line 7
def initialize
  @events = []
end

Public instance methods

Source code GitHub
# File activesupport/lib/active_support/error_reporter/test_helper.rb, line 11
def report(error, handled:, severity:, source:, context:)
  @events << [error, handled, severity, source, context]
end

Definition files