aboutsummaryrefslogtreecommitdiffstats
path: root/test/controllers/ingresses
diff options
context:
space:
mode:
authorDino Maric <dino.onex@gmail.com>2018-12-14 11:06:12 +0100
committerDino Maric <dino.onex@gmail.com>2018-12-14 11:06:12 +0100
commit4412ca6dac7dce284e2010678f7f2e276d60e4d1 (patch)
treeef47c14cd5164aa74ec0ffea4a4a553dd1e32ab4 /test/controllers/ingresses
parentaf7d237002aca9667f28923f7181db7cb5e51460 (diff)
downloadrails-4412ca6dac7dce284e2010678f7f2e276d60e4d1.tar.gz
rails-4412ca6dac7dce284e2010678f7f2e276d60e4d1.tar.bz2
rails-4412ca6dac7dce284e2010678f7f2e276d60e4d1.zip
Add frozen_string_literal: true to match Rails codebase
Diffstat (limited to 'test/controllers/ingresses')
-rw-r--r--test/controllers/ingresses/amazon/inbound_emails_controller_test.rb2
-rw-r--r--test/controllers/ingresses/mailgun/inbound_emails_controller_test.rb2
-rw-r--r--test/controllers/ingresses/mandrill/inbound_emails_controller_test.rb2
-rw-r--r--test/controllers/ingresses/postfix/inbound_emails_controller_test.rb2
-rw-r--r--test/controllers/ingresses/sendgrid/inbound_emails_controller_test.rb2
5 files changed, 10 insertions, 0 deletions
diff --git a/test/controllers/ingresses/amazon/inbound_emails_controller_test.rb b/test/controllers/ingresses/amazon/inbound_emails_controller_test.rb
index c36c500cbe..e10985553e 100644
--- a/test/controllers/ingresses/amazon/inbound_emails_controller_test.rb
+++ b/test/controllers/ingresses/amazon/inbound_emails_controller_test.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require "test_helper"
ActionMailbox::Ingresses::Amazon::InboundEmailsController.verifier =
diff --git a/test/controllers/ingresses/mailgun/inbound_emails_controller_test.rb b/test/controllers/ingresses/mailgun/inbound_emails_controller_test.rb
index c5ec71013e..3f225b8953 100644
--- a/test/controllers/ingresses/mailgun/inbound_emails_controller_test.rb
+++ b/test/controllers/ingresses/mailgun/inbound_emails_controller_test.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require "test_helper"
ENV["MAILGUN_INGRESS_API_KEY"] = "tbsy84uSV1Kt3ZJZELY2TmShPRs91E3yL4tzf96297vBCkDWgL"
diff --git a/test/controllers/ingresses/mandrill/inbound_emails_controller_test.rb b/test/controllers/ingresses/mandrill/inbound_emails_controller_test.rb
index c8a8e731d6..40f956c930 100644
--- a/test/controllers/ingresses/mandrill/inbound_emails_controller_test.rb
+++ b/test/controllers/ingresses/mandrill/inbound_emails_controller_test.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require "test_helper"
ENV["MANDRILL_INGRESS_API_KEY"] = "1l9Qf7lutEf7h73VXfBwhw"
diff --git a/test/controllers/ingresses/postfix/inbound_emails_controller_test.rb b/test/controllers/ingresses/postfix/inbound_emails_controller_test.rb
index 5e0777aa30..d646f5e859 100644
--- a/test/controllers/ingresses/postfix/inbound_emails_controller_test.rb
+++ b/test/controllers/ingresses/postfix/inbound_emails_controller_test.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require "test_helper"
class ActionMailbox::Ingresses::Postfix::InboundEmailsControllerTest < ActionDispatch::IntegrationTest
diff --git a/test/controllers/ingresses/sendgrid/inbound_emails_controller_test.rb b/test/controllers/ingresses/sendgrid/inbound_emails_controller_test.rb
index 0c7d0d6846..59a87e9248 100644
--- a/test/controllers/ingresses/sendgrid/inbound_emails_controller_test.rb
+++ b/test/controllers/ingresses/sendgrid/inbound_emails_controller_test.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require "test_helper"
class ActionMailbox::Ingresses::Sendgrid::InboundEmailsControllerTest < ActionDispatch::IntegrationTest