Flask - Testing Flask Applications
What will
response.data contain after this test client POST request if the route returns render_template('result.html', name=name) with name='Alice'?
response = client.post('/submit', data={'name': 'Alice'})