aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/inherited_job.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activejob/test/jobs/inherited_job.rb')
-rw-r--r--activejob/test/jobs/inherited_job.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activejob/test/jobs/inherited_job.rb b/activejob/test/jobs/inherited_job.rb
new file mode 100644
index 0000000000..60fca66f88
--- /dev/null
+++ b/activejob/test/jobs/inherited_job.rb
@@ -0,0 +1,5 @@
+require_relative "application_job"
+
+class InheritedJob < ApplicationJob
+ self.queue_adapter = :inline
+end