mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
16 lines
328 B
Ruby
16 lines
328 B
Ruby
require File.expand_path('../../../load_paths', __FILE__)
|
|
|
|
require 'active_job'
|
|
require 'support/job_buffer'
|
|
|
|
GlobalID.app = 'aj'
|
|
|
|
@adapter = ENV['AJ_ADAPTER'] || 'inline'
|
|
|
|
if ENV['AJ_INTEGRATION_TESTS']
|
|
require 'support/integration/helper'
|
|
else
|
|
require "adapters/#{@adapter}"
|
|
end
|
|
|
|
require 'active_support/testing/autorun'
|