1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activejob/test/helper.rb

20 lines
425 B
Ruby
Raw Normal View History

2014-05-18 05:44:28 -04:00
require 'bundler'
Bundler.setup
2014-05-18 17:47:35 -04:00
$LOAD_PATH << File.dirname(__FILE__) + "/../lib"
2014-05-18 05:44:28 -04:00
require 'active_job'
2014-05-21 13:08:59 -04:00
adapter = ENV['AJADAPTER'] || 'inline'
2014-08-05 02:05:14 -04:00
puts "Testing#{" integration" if ENV['AJ_INTEGRATION_TESTS']} using #{adapter}"
2014-05-21 13:08:59 -04:00
2014-08-05 02:05:14 -04:00
if ENV['AJ_INTEGRATION_TESTS']
require 'support/integration/helper'
else
require "adapters/#{adapter}"
end
2014-05-20 11:59:50 -04:00
2014-08-05 02:05:14 -04:00
require 'active_support/testing/autorun'
2014-08-05 02:05:14 -04:00
ActiveJob::Base.logger.level = Logger::DEBUG