aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/kwargs_job.rb
blob: ccd98115952b74578a409c8978e3ed5b12cb04e1 (plain) (blame)
1
2
3
4
5
6
7
8
# 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