diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-21 18:23:09 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-21 18:23:09 -0700 |
commit | 3075f0ab8853fd97c68d3f0b8086dfa5c863c7f2 (patch) | |
tree | 5bb022e5dc1dc57cd663afc9feec33e6b5039bb1 /python/tests/routes.py | |
parent | 416117af51592b2a60b317427dc034544347b435 (diff) | |
download | fatcat-3075f0ab8853fd97c68d3f0b8086dfa5c863c7f2.tar.gz fatcat-3075f0ab8853fd97c68d3f0b8086dfa5c863c7f2.zip |
copy some of paper-search over
Diffstat (limited to 'python/tests/routes.py')
-rw-r--r-- | python/tests/routes.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/python/tests/routes.py b/python/tests/routes.py index b2cfd058..f92df54c 100644 --- a/python/tests/routes.py +++ b/python/tests/routes.py @@ -54,7 +54,13 @@ def test_all_views(app): rv = app.get('/release/00000000-0000-0000-4444-000000000002') assert rv.status_code == 200 - rv = app.get('/release/00000000-0000-0000-4444-000000000002'.format(route)) + rv = app.get('/release/lookup?doi=10.123/abc') + assert rv.status_code == 302 + + rv = app.get('/release/lookup?doi=10.123%2Fabc') + assert rv.status_code == 302 + + rv = app.get('/release/search') assert rv.status_code == 200 rv = app.get('/work/00000000-0000-0000-5555-000000000002') |