-
Notifications
You must be signed in to change notification settings - Fork 568
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add unit tests for application_tests #454
Conversation
test/unit/webdriver/app_test.py
Outdated
httpretty.register_uri( | ||
httpretty.POST, | ||
appium_command('/session/1234567890/appium/device/install_app'), | ||
body='{"value": {"app": ""}}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The return value is '{"value": ""}'
test/unit/webdriver/app_test.py
Outdated
httpretty.register_uri( | ||
httpretty.POST, | ||
appium_command('/session/1234567890/appium/device/remove_app'), | ||
body='{"value": {"app": ""}}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'{"value": ""}'
test/unit/webdriver/app_test.py
Outdated
httpretty.register_uri( | ||
httpretty.POST, | ||
appium_command('/session/1234567890/appium/app/background'), | ||
body='{"value": {"app": }}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe here also '{"value": ""}'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm! okay
No description provided.