diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-20 19:55:53 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-06-20 19:55:53 -0700 |
commit | 7ebe32a290aa160c43671c21e968d1614a878f02 (patch) | |
tree | b1564665c7566b7b1d82fbac91162a9bf1b9e0bf /python/tests/routes.py | |
parent | 907a9d3b5882ec12b2c8c0563a7ed08be0edf022 (diff) | |
download | fatcat-7ebe32a290aa160c43671c21e968d1614a878f02.tar.gz fatcat-7ebe32a290aa160c43671c21e968d1614a878f02.zip |
importer tests and fixes
Diffstat (limited to 'python/tests/routes.py')
-rw-r--r-- | python/tests/routes.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/tests/routes.py b/python/tests/routes.py index d6815740..d0af67c9 100644 --- a/python/tests/routes.py +++ b/python/tests/routes.py @@ -27,6 +27,9 @@ def test_all_views(app): rv = app.get('/container/00000000-0000-0000-1111-000000000002'.format(route)) assert rv.status_code == 200 + rv = app.get('/container/create') + assert rv.status_code == 200 + rv = app.get('/creator/00000000-0000-0000-2222-000000000002'.format(route)) assert rv.status_code == 200 |