Flask - Testing Flask Applications
Given this Flask test code snippet, what will
response.status_code be if the form is handled correctly?with app.test_client() as client:
response = client.post('/login', data={'username': 'user', 'password': 'pass'})