mirror of
https://github.com/FliegendeWurst/googleplay-api.git
synced 2024-11-22 12:54:58 +00:00
Added userProfile case to test.py
This commit is contained in:
parent
a4dbf80a73
commit
df4300c7df
7
test.py
7
test.py
@ -83,6 +83,13 @@ print('\nGetting details for %s\n' % testApps[0])
|
|||||||
details = server.details(testApps[0])
|
details = server.details(testApps[0])
|
||||||
print(details)
|
print(details)
|
||||||
|
|
||||||
|
# USER PROFILE
|
||||||
|
print('\nGettung user profile information\n')
|
||||||
|
user = server.userProfile()
|
||||||
|
if 'Noto Sans' not in user['title']:
|
||||||
|
raise Exception("Wrong userProfile behaviour")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
# REVIEWS
|
# REVIEWS
|
||||||
print('\nGetting reviews for %s\n' % testApps[0])
|
print('\nGetting reviews for %s\n' % testApps[0])
|
||||||
revs = server.reviews(testApps[0])
|
revs = server.reviews(testApps[0])
|
||||||
|
Loading…
Reference in New Issue
Block a user