aboutsummaryrefslogtreecommitdiffstats
path: root/test/helper.rb
blob: 7ba7607df277d9238383dbc5684969e9a1c043fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'bundler'
Bundler.setup

$LOAD_PATH << File.dirname(__FILE__) + "/../lib"

require 'active_job'

adapter  = ENV['AJADAPTER'] || 'inline'
require "adapters/#{adapter}"
puts "Testing using #{adapter}"

require 'active_support/testing/autorun'


ActiveJob::Base.logger.level = Logger::ERROR