aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/support/integration
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2015-08-04 11:56:57 +0200
committerKasper Timm Hansen <kaspth@gmail.com>2015-08-04 11:56:57 +0200
commit7a3ca69959e312a215d5e8144fca79a08654fd89 (patch)
tree1f5d2c6191165aa6628074a015d5c5bea398c390 /activejob/test/support/integration
parent98ce161668d270390eb76db96bac9e1aa60cb0dd (diff)
parent3860e6b2bf486d8b27d433daab358dbc68ae3448 (diff)
downloadrails-7a3ca69959e312a215d5e8144fca79a08654fd89.tar.gz
rails-7a3ca69959e312a215d5e8144fca79a08654fd89.tar.bz2
rails-7a3ca69959e312a215d5e8144fca79a08654fd89.zip
Merge pull request #20800 from xijo/make_active_job_locale_aware
Make ActiveJob locale aware
Diffstat (limited to 'activejob/test/support/integration')
-rw-r--r--activejob/test/support/integration/dummy_app_template.rb6
-rw-r--r--activejob/test/support/integration/test_case_helpers.rb4
2 files changed, 9 insertions, 1 deletions
diff --git a/activejob/test/support/integration/dummy_app_template.rb b/activejob/test/support/integration/dummy_app_template.rb
index 09a68738ad..4ffdb8cffa 100644
--- a/activejob/test/support/integration/dummy_app_template.rb
+++ b/activejob/test/support/integration/dummy_app_template.rb
@@ -8,13 +8,17 @@ require "#{File.expand_path("../jobs_manager.rb", __FILE__)}"
JobsManager.current_manager.setup
CODE
+initializer 'i18n.rb', <<-CODE
+I18n.available_locales = [:en, :de]
+CODE
+
file 'app/jobs/test_job.rb', <<-CODE
class TestJob < ActiveJob::Base
queue_as :integration_tests
def perform(x)
File.open(Rails.root.join("tmp/\#{x}"), "w+") do |f|
- f.write x
+ f.write I18n.locale
end
end
end
diff --git a/activejob/test/support/integration/test_case_helpers.rb b/activejob/test/support/integration/test_case_helpers.rb
index 7e87ede275..39aee6d407 100644
--- a/activejob/test/support/integration/test_case_helpers.rb
+++ b/activejob/test/support/integration/test_case_helpers.rb
@@ -45,4 +45,8 @@ module TestCaseHelpers
def job_executed
Dummy::Application.root.join("tmp/#{@id}").exist?
end
+
+ def job_output
+ File.read Dummy::Application.root.join("tmp/#{@id}")
+ end
end