Rest API - API Testing and Monitoring
What will be the result of this test code?
response = client.post('/login', json={'user':'bob'})
assert response.status_code == 201
assert response.json()['token'] != ''