From df4300c7dff546b1c524d9d02939b3fff3b0b435 Mon Sep 17 00:00:00 2001 From: Domenico Iezzi Date: Sat, 9 Dec 2017 11:39:10 +0100 Subject: [PATCH] Added userProfile case to test.py --- test.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test.py b/test.py index dda5691..5f3c717 100644 --- a/test.py +++ b/test.py @@ -83,6 +83,13 @@ print('\nGetting details for %s\n' % testApps[0]) details = server.details(testApps[0]) 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 print('\nGetting reviews for %s\n' % testApps[0]) revs = server.reviews(testApps[0])