Flask - Testing Flask Applications
What is wrong with this Flask test code snippet?
Assuming '/missing' route does not exist.
client = app.test_client()
response = client.get('/missing')
assert response.status_code == 200Assuming '/missing' route does not exist.
