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

19 lines
374 B
Ruby
Raw Normal View History

2014-08-12 14:24:19 -04:00
require File.expand_path('../../../load_paths', __FILE__)
2014-05-18 05:44:28 -04:00
require 'active_job'
2014-08-18 03:19:41 -04:00
require 'support/job_buffer'
2014-05-18 05:44:28 -04:00
2014-08-16 21:06:30 -04:00
GlobalID.app = 'aj'
@adapter = ENV['AJ_ADAPTER'] || 'inline'
2014-05-21 13:08:59 -04:00
2014-08-18 03:19:41 -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-09-12 13:32:03 -04:00
ActiveSupport::TestCase.test_order = :random