diff options
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 |