test/app_test_methods.rb in ruboto-0.15.0 vs test/app_test_methods.rb in ruboto-0.16.0
- old
+ new
@@ -43,9 +43,13 @@
# FIXME(uwe): Remove when we stop testing JRuby < 1.7.4.dev
next if file =~ /dir_and_file/ && (RUBOTO_PLATFORM == 'CURRENT' || JRUBY_JARS_VERSION < Gem::Version.new('1.7.4.dev'))
# EMXIF
+ # FIXME(uwe): Remove when we stop testing api level < 11
+ next if file =~ /fragment/ && ANDROID_OS < 11
+ # EMXIF
+
if file =~ /_test.rb$/
next unless file =~ /#{ENV['ACTIVITY_TEST_PATTERN']}/
snake_name = file.chomp('_test.rb')
activity_name = File.basename(snake_name).split('_').map { |s| "#{s[0..0].upcase}#{s[1..-1]}" }.join