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

No need to disable sidikiq tests with 1.9.3 anymore

This commit is contained in:
Rafael Mendonça França 2015-01-04 15:14:54 -03:00
parent 93559da482
commit 4ab0320fb4

View file

@ -7,17 +7,6 @@ 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