mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
e380ac685b
* This allows for easier reading, since those are two words, so they should be split by _ Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
18 lines
374 B
Ruby
18 lines
374 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'
|
|
|
|
ActiveSupport::TestCase.test_order = :random
|