Flask - Testing Flask Applications
Consider this Flask test snippet:
What is this test primarily verifying?
client = app.test_client()
response = client.post('/login', data={'username': 'user', 'password': 'pass'})
print(response.status_code)What is this test primarily verifying?
