aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/support/integration/adapters/inline.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activejob/test/support/integration/adapters/inline.rb')
-rw-r--r--activejob/test/support/integration/adapters/inline.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/activejob/test/support/integration/adapters/inline.rb b/activejob/test/support/integration/adapters/inline.rb
new file mode 100644
index 0000000000..83c38f706f
--- /dev/null
+++ b/activejob/test/support/integration/adapters/inline.rb
@@ -0,0 +1,15 @@
+module InlineJobsManager
+ def setup
+ ActiveJob::Base.queue_adapter = :inline
+ end
+
+ def clear_jobs
+ end
+
+ def start_workers
+ end
+
+ def stop_workers
+ end
+end
+