Fix failing EmailOnPush
spec.
This commit is contained in:
parent
cea3cf177c
commit
99d5a91d7a
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ require 'spec_helper'
|
||||||
|
|
||||||
describe DisableEmailInterceptor, lib: true do
|
describe DisableEmailInterceptor, lib: true do
|
||||||
before do
|
before do
|
||||||
ActionMailer::Base.register_interceptor(DisableEmailInterceptor)
|
Mail.register_interceptor(DisableEmailInterceptor)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should not send emails' do
|
it 'should not send emails' do
|
||||||
|
@ -14,7 +14,7 @@ describe DisableEmailInterceptor, lib: true do
|
||||||
# Removing interceptor from the list because unregister_interceptor is
|
# Removing interceptor from the list because unregister_interceptor is
|
||||||
# implemented in later version of mail gem
|
# implemented in later version of mail gem
|
||||||
# See: https://github.com/mikel/mail/pull/705
|
# See: https://github.com/mikel/mail/pull/705
|
||||||
Mail.class_variable_set(:@@delivery_interceptors, [])
|
Mail.unregister_interceptor(DisableEmailInterceptor)
|
||||||
end
|
end
|
||||||
|
|
||||||
def deliver_mail
|
def deliver_mail
|
||||||
|
|
Loading…
Reference in a new issue