aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/test_helper_test.rb
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-11-23 17:00:45 -0500
committerGitHub <noreply@github.com>2018-11-23 17:00:45 -0500
commit34726ad8959079fea17a2f6ea7fc2bd4864255a6 (patch)
tree59438a03e8096c5232ff1d43a55c08cc4a307f84 /actionmailer/test/test_helper_test.rb
parent437d20916f80eb905a1c028db4bd53304c293e61 (diff)
parent60339da5bcb76489576321fa12e665f176d8d692 (diff)
downloadrails-34726ad8959079fea17a2f6ea7fc2bd4864255a6.tar.gz
rails-34726ad8959079fea17a2f6ea7fc2bd4864255a6.tar.bz2
rails-34726ad8959079fea17a2f6ea7fc2bd4864255a6.zip
Merge pull request #34367 from gmcgibbon/rm_parameterized_delivery_job
Deliver parameterized mail with DeliveryJob
Diffstat (limited to 'actionmailer/test/test_helper_test.rb')
-rw-r--r--actionmailer/test/test_helper_test.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/actionmailer/test/test_helper_test.rb b/actionmailer/test/test_helper_test.rb
index c700db9408..4e21ab0a69 100644
--- a/actionmailer/test/test_helper_test.rb
+++ b/actionmailer/test/test_helper_test.rb
@@ -27,12 +27,8 @@ end
class CustomDeliveryJob < ActionMailer::DeliveryJob
end
-class CustomParameterizedDeliveryJob < ActionMailer::Parameterized::DeliveryJob
-end
-
class CustomDeliveryMailer < TestHelperMailer
self.delivery_job = CustomDeliveryJob
- self.parameterized_delivery_job = CustomParameterizedDeliveryJob
end
class TestHelperMailerTest < ActionMailer::TestCase