aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/support/integration/adapters/inline.rb
blob: e06b34c976f28950bd991e299cd7e8181d3b1667 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module InlineJobsManager
  def setup
    ActiveJob::Base.queue_adapter = :inline
  end

  def clear_jobs
  end

  def start_workers
  end

  def stop_workers
  end
end