We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e02498c commit e5b3939Copy full SHA for e5b3939
android_tests/lib/android/specs/install.rb
@@ -1,10 +1,23 @@
1
describe 'install' do
2
- # To Do: Blocked on https://github.com/appium/appium/issues/3030
3
-=begin
+ # To Do: Blocked on https://github.com/appium/appium/issues/3032
+ def pkg
4
+ 'io.appium.android.apis'
5
+ end
6
+
7
+ def installed
8
+ is_installed?(pkg).must_equal true
9
10
11
+ def not_installed
12
+ is_installed?(pkg).must_equal false
13
14
15
t 'install/uninstall/launch' do
16
+ installed
17
remove 'io.appium.android.apis'
18
+ not_installed
19
install caps[:app]
20
21
launch
22
end
-=end
23
0 commit comments