aboutsummaryrefslogblamecommitdiffstats
path: root/activejob/test/jobs/kwargs_job.rb
blob: b86b06bada8923f9ff1ec92ad5f5d68a9984131b (plain) (tree)
1
2
3
4
5
6
7
8
9
                             
 
                                        





                                                   
# frozen_string_literal: true

require_relative "../support/job_buffer"

class KwargsJob < ActiveJob::Base
  def perform(argument: 1)
    JobBuffer.add("Job with argument: #{argument}")
  end
end