Flask - Testing Flask Applications
Consider this Flask test snippet:
If the '/greet' route returns
with app.test_client() as client:
response = client.get('/greet')
print(response.data.decode())If the '/greet' route returns
'Welcome to Flask Testing!', what will be the output?