Flask - Testing Flask Applications
Given this Flask test code snippet, what will
response.status_code be after a successful login?
response = client.post('/login', data={'username': 'user', 'password': 'pass'}, follow_redirects=True)