aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/kwargs_job.rb
blob: 2df17d15ae2589d86540ecdc6f6dc3f600ae0631 (plain) (blame)
1
2
3
4
5
6
7
require_relative '../support/job_buffer'

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