aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/support/integration/test_case_helpers.rb
diff options
context:
space:
mode:
authorAbdelkader Boudih <terminale@gmail.com>2014-08-12 09:29:21 +0000
committerAbdelkader Boudih <terminale@gmail.com>2014-08-12 10:07:21 +0000
commit0c232779ece1ff6bf9bce9d55c54ea19867a2170 (patch)
treefd833a906bdf4a982d01046f9cdfe6d0d720fdc7 /activejob/test/support/integration/test_case_helpers.rb
parenta75f085941b2d6aed160f5f2f7e64e5fc7e03826 (diff)
downloadrails-0c232779ece1ff6bf9bce9d55c54ea19867a2170.tar.gz
rails-0c232779ece1ff6bf9bce9d55c54ea19867a2170.tar.bz2
rails-0c232779ece1ff6bf9bce9d55c54ea19867a2170.zip
Remove activejob integration tests
Diffstat (limited to 'activejob/test/support/integration/test_case_helpers.rb')
-rw-r--r--activejob/test/support/integration/test_case_helpers.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/activejob/test/support/integration/test_case_helpers.rb b/activejob/test/support/integration/test_case_helpers.rb
deleted file mode 100644
index 9a5eea0783..0000000000
--- a/activejob/test/support/integration/test_case_helpers.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-require 'active_support/concern'
-require 'support/integration/jobs_manager'
-
-module TestCaseHelpers
- extend ActiveSupport::Concern
-
- included do
- self.use_transactional_fixtures = false
-
- setup do
- clear_jobs
- end
-
- teardown do
- clear_jobs
- FileUtils.rm_rf Dir[Dummy::Application.root.join("tmp/AJ-*")]
- end
- end
-
- protected
-
- def jobs_manager
- JobsManager.current_manager
- end
-
- def clear_jobs
- jobs_manager.clear_jobs
- end
-
-end