diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 19:21:10 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 19:21:10 -0700 |
commit | fc443013d4a004d69c53be3286e33dd30921879e (patch) | |
tree | 7ae87d9be5ec06d0612203f153302c496c3743d4 /python/tests/web_routes.py | |
parent | ab649adac04086817c69113fa075f1cb9bdc6d0f (diff) | |
download | fatcat-fc443013d4a004d69c53be3286e33dd30921879e.tar.gz fatcat-fc443013d4a004d69c53be3286e33dd30921879e.zip |
improve test coverage
Diffstat (limited to 'python/tests/web_routes.py')
-rw-r--r-- | python/tests/web_routes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/tests/web_routes.py b/python/tests/web_routes.py index 889bdd90..3af5369b 100644 --- a/python/tests/web_routes.py +++ b/python/tests/web_routes.py @@ -11,5 +11,6 @@ def test_static_routes(app): rv = app.get(route) assert rv.status_code == 200 + assert app.get("/search").status_code == 302 assert app.get("/static/bogus/route").status_code == 404 |