Remove unused test job

This commit is contained in:
Aidan Haran 2023-11-08 16:33:53 +00:00
parent e3deb75fad
commit 6dd980fed0
1 changed files with 0 additions and 12 deletions

View File

@ -1,12 +0,0 @@
# frozen_string_literal: true
require_relative "../support/job_buffer"
class QueueAsJob < ActiveJob::Base
MY_QUEUE = :low_priority
queue_as MY_QUEUE
def perform(greeter = "David")
JobBuffer.add("#{greeter} says hello")
end
end