mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
30 lines
555 B
Ruby
30 lines
555 B
Ruby
require File.expand_path('../../../load_paths', __FILE__)
|
|
|
|
require 'active_job'
|
|
require 'support/job_buffer'
|
|
|
|
GlobalID.app = 'aj'
|
|
|
|
@adapter = ENV['AJADAPTER'] || 'inline'
|
|
|
|
def sidekiq?
|
|
@adapter == 'sidekiq'
|
|
end
|
|
|
|
def ruby_193?
|
|
RUBY_VERSION == '1.9.3' && RUBY_ENGINE != 'java'
|
|
end
|
|
|
|
# Sidekiq doesn't work with MRI 1.9.3
|
|
exit if sidekiq? && ruby_193?
|
|
|
|
if ENV['AJ_INTEGRATION_TESTS']
|
|
require 'support/integration/helper'
|
|
else
|
|
require "adapters/#{@adapter}"
|
|
end
|
|
|
|
require 'active_support/testing/autorun'
|
|
|
|
ActiveJob::Base.logger.level = Logger::DEBUG
|
|
|