toulouse_axel: complete functests (#37873)

This commit is contained in:
Lauréline Guérin 2019-11-22 15:36:13 +01:00
parent f371a820e6
commit 2a31fd8558
No known key found for this signature in database
GPG Key ID: 1FAB9B9B4F93D473
1 changed files with 8 additions and 0 deletions

View File

@ -17,3 +17,11 @@ def test_link(conn, user):
assert res['err'] == 0
pprint.pprint(res)
print('\n')
url = conn + '/family_info?NameID=123'
resp = requests.get(url)
resp.raise_for_status()
res = resp.json()
assert res['err'] == 0
pprint.pprint(res)
print('\n')