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.rb7
1 files changed, 7 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..14f852ed06
--- /dev/null
+++ b/activejob/test/jobs/inherited_job.rb
@@ -0,0 +1,7 @@
+# frozen_string_literal: true
+
+require_relative "application_job"
+
+class InheritedJob < ApplicationJob
+ self.queue_adapter = :inline
+end