test/app_test_methods.rb in ruboto-1.4.0 vs test/app_test_methods.rb in ruboto-1.4.1
- old
+ new
@@ -36,20 +36,12 @@
end
end
def run_activity_tests(activity_dir)
Dir[File.expand_path("#{activity_dir}/*", File.dirname(__FILE__))].each do |file|
- # FIXME(uwe): Remove when we stop testing JRuby 1.7.22 or api level 19
- next if file =~ /rss/ && (JRUBY_JARS_VERSION == Gem::Version.new('1.7.22')) &&
- RUBOTO_PLATFORM == 'STANDALONE' && ANDROID_OS == 19
- # EMXIF
-
- # FIXME(uwe): Remove when we stop testing JRuby < 1.7.20.dev
- next if file =~ /rss/ && (JRUBY_JARS_VERSION < Gem::Version.new('1.7.20.dev'))
- # EMXIF
-
- # FIXME(uwe): Remove when we release RubotoCore based on JRuby 1.7.20
- next if file =~ /rss/ && (RUBOTO_PLATFORM == 'CURRENT' || RUBOTO_PLATFORM == 'FROM_GEM')
+ # FIXME(uwe): Remove when we stop testing JRuby 1.7.24 or api level 19
+ next if file =~ /rss/ && JRUBY_JARS_VERSION <= Gem::Version.new('1.7.24') &&
+ (RUBOTO_PLATFORM == 'STANDALONE' || RUBOTO_PLATFORM == 'CURRENT') && ANDROID_OS == 19
# EMXIF
# FIXME(uwe): Remove when we stop testing api level < 16
# FIXME(uwe): Remove when we release RubotoCore with SSL included
next if file =~ /ssl/ && (ANDROID_OS < 16 ||