方法
属性
[R] | events |
类公有方法
new() 链接
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/error_reporter/test_helper.rb, line 7 def initialize @events = [] end
实例公有方法
report(error, handled:, severity:, source:, context:) 链接
源代码: 显示 | 在 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