aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/support/integration/adapters/qu.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activejob/test/support/integration/adapters/qu.rb')
-rw-r--r--activejob/test/support/integration/adapters/qu.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/activejob/test/support/integration/adapters/qu.rb b/activejob/test/support/integration/adapters/qu.rb
deleted file mode 100644
index 12d063ea0d..0000000000
--- a/activejob/test/support/integration/adapters/qu.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-module QuJobsManager
- def clear_jobs
- Qu.clear "active_jobs_default"
- end
-
- def start_workers
- @thread = Thread.new { Qu::Worker.new("active_jobs_default").start }
- end
-
- def stop_workers
- @thread.kill
- end
-end
-