Flask - Testing Flask Applications
After executing this Flask test client code:
Assuming the
with app.test_client() as client:
response = client.post('/greet', data={'user': 'Bob'})Assuming the
/greet route returns f"Welcome {request.form['user']}!", what will response.data contain?