diff options
Diffstat (limited to 'python/tests/web_routes.py')
-rw-r--r-- | python/tests/web_routes.py | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/python/tests/web_routes.py b/python/tests/web_routes.py index e6387882..889bdd90 100644 --- a/python/tests/web_routes.py +++ b/python/tests/web_routes.py @@ -1,34 +1,15 @@ import json -import tempfile import pytest from fatcat_client.rest import ApiException from fixtures import * def test_static_routes(app): - for route in ('/health.json', '/robots.txt', '/', '/about'): + for route in ('/health.json', '/robots.txt', '/', '/about', '/rfc', + '/static/fatcat.jpg'): rv = app.get(route) assert rv.status_code == 200 assert app.get("/static/bogus/route").status_code == 404 - -def test_all_views(app): - - rv = app.get('/editgroup/aaaaaaaaaaaabo53aaaaaaaaae') - assert rv.status_code == 200 - - rv = app.get('/editgroup/ccccccccccccccccccccccccca') - print(rv) - print(rv.data) - assert rv.status_code == 404 - - #rv = app.get('/editgroup/current') - #assert rv.status_code == 302 - - rv = app.get('/editor/aaaaaaaaaaaabkvkaaaaaaaaae') - assert rv.status_code == 200 - - rv = app.get('/editor/aaaaaaaaaaaabkvkaaaaaaaaae/editgroups') - assert rv.status_code == 200 |