Sha256: 4b8a9438f27b584dc466dfb0db7f34a46e31cfcb27d0c316d9e4aeb27388c2bc

Contents?: true

Size: 551 Bytes

Versions: 2

Compression:

Stored size: 551 Bytes

Contents

describe 'install' do
  # To Do: Blocked on https://github.com/appium/appium/issues/3032
  def pkg
    'io.appium.android.apis'
  end

  def installed
    is_installed?(pkg).must_equal true
  end

  def not_installed
    is_installed?(pkg).must_equal false
  end

  t 'install/uninstall/launch' do
    skip # no way to launch apk after it's uninstalled/installed
    # blocked on: https://github.com/appium/appium/issues/2969
    installed
    remove 'io.appium.android.apis'
    not_installed
    install caps[:app]
    installed
    launch
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
appium_lib-4.1.0 android_tests/lib/android/specs/install.rb
appium_lib-4.0.0 android_tests/lib/android/specs/install.rb