Sha256: 26cdbbb66bdf721d6a422f9d59588ca64c7061a32a36484ad1b0de14fc0dd7b1
Contents?: true
Size: 439 Bytes
Versions: 29
Compression:
Stored size: 439 Bytes
Contents
require 'test_helper' class ActionMailerIntegration < IntegrationTest def test_logs_mail_received instrument "receive" assert_gauge_logged "receive.action_mailer" end def test_logs_mail_delivered instrument "deliver" assert_gauge_logged "deliver.action_mailer" end private def instrument(event) ActiveSupport::Notifications.instrument "#{event}.action_mailer" do |*args| # nada end end end
Version data entries
29 entries across 29 versions & 1 rubygems