From 1da209fa9bb83ca7ee8a9a1722e124877e839936 Mon Sep 17 00:00:00 2001 From: Robin Dupret Date: Wed, 27 Aug 2014 19:47:39 +0200 Subject: Avoid skipping Sidekiq tests on Rubinius Now that Travis provides support for Rubinius 2.2.10, we can run the Sidekiq tests against this version. --- activejob/test/helper.rb | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'activejob/test') diff --git a/activejob/test/helper.rb b/activejob/test/helper.rb index a56b35da12..85094387ef 100644 --- a/activejob/test/helper.rb +++ b/activejob/test/helper.rb @@ -10,18 +10,12 @@ def sidekiq? @adapter == 'sidekiq' end -def rubinius? - RUBY_ENGINE == 'rbx' -end - def ruby_193? RUBY_VERSION == '1.9.3' && RUBY_ENGINE != 'java' end -#Sidekiq don't work with MRI 1.9.3 -#Travis uses rbx 2.6 which don't support unicode characters in methods. -#Remove the check when Travis change to rbx 2.7+ -exit if sidekiq? && (ruby_193? || rubinius?) +# Sidekiq doesn't work with MRI 1.9.3 +exit if sidekiq? && ruby_193? require "adapters/#{@adapter}" -- cgit v1.2.3