Flask - Testing Flask Applications
Given this Flask test code:
If the '/hello' route returns
with app.test_client() as client:
response = client.get('/hello')
print(response.status_code)
print(response.data.decode())If the '/hello' route returns
'Hello, World!' with status 200, what will be printed?