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

  def clear_jobs
  end

  def start_workers
  end

  def stop_workers
  end
end