Flask - Testing Flask Applications
What will be the output of this Flask test code?
Assuming the '/hello' route returns HTTP 200.
client = app.test_client()
response = client.get('/hello')
print(response.status_code)Assuming the '/hello' route returns HTTP 200.
