Flask - Testing Flask Applications
Why does this test client code raise an error?
Assuming no route is defined for
with app.test_client() as client:
response = client.get('/missing_route')Assuming no route is defined for
/missing_route.