aboutsummaryrefslogtreecommitdiffstats
path: root/test/support/integration/test_case_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/support/integration/test_case_helpers.rb')
-rw-r--r--test/support/integration/test_case_helpers.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/support/integration/test_case_helpers.rb b/test/support/integration/test_case_helpers.rb
new file mode 100644
index 0000000000..9a5eea0783
--- /dev/null
+++ b/test/support/integration/test_case_helpers.rb
@@ -0,0 +1,30 @@
+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