Flask - Testing Flask Applications
Given this Flask test code snippet, what will
response.status_code be if the form data is valid and the route returns redirect('/success')?
response = client.post('/submit', data={'username': 'testuser'})