aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/support/integration/dummy_app_template.rb
diff options
context:
space:
mode:
authorCristian Bica <cristian.bica@gmail.com>2014-08-18 10:19:41 +0300
committerCristian Bica <cristian.bica@gmail.com>2014-09-11 00:38:56 +0300
commit175ba6666453684bba3c24d03b75580a1f8e68bb (patch)
tree1d89d3d7452428eb0c11358b8ae37e4363030509 /activejob/test/support/integration/dummy_app_template.rb
parent467e5700e6c759276406d8dc3604ede2c86235cb (diff)
downloadrails-175ba6666453684bba3c24d03b75580a1f8e68bb.tar.gz
rails-175ba6666453684bba3c24d03b75580a1f8e68bb.tar.bz2
rails-175ba6666453684bba3c24d03b75580a1f8e68bb.zip
ActiveJob Integration Tests
Diffstat (limited to 'activejob/test/support/integration/dummy_app_template.rb')
-rw-r--r--activejob/test/support/integration/dummy_app_template.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/activejob/test/support/integration/dummy_app_template.rb b/activejob/test/support/integration/dummy_app_template.rb
new file mode 100644
index 0000000000..28aae0f884
--- /dev/null
+++ b/activejob/test/support/integration/dummy_app_template.rb
@@ -0,0 +1,21 @@
+if ENV['AJADAPTER'] == 'delayed_job'
+ generate "delayed_job:active_record"
+ rake("db:migrate")
+end
+
+initializer 'activejob.rb', <<-CODE
+require "#{File.expand_path("../jobs_manager.rb", __FILE__)}"
+JobsManager.current_manager.setup
+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
+ end
+ end
+end
+CODE