aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/support/integration/test_case_helpers.rb
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/test_case_helpers.rb
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/test_case_helpers.rb')
-rw-r--r--activejob/test/support/integration/test_case_helpers.rb4
1 files changed, 4 insertions, 0 deletions
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