diff options
Diffstat (limited to 'python/tests')
-rw-r--r-- | python/tests/web_entity_views.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/tests/web_entity_views.py b/python/tests/web_entity_views.py index 8da9ab07..4e486e78 100644 --- a/python/tests/web_entity_views.py +++ b/python/tests/web_entity_views.py @@ -102,6 +102,12 @@ def test_web_container(app): assert rv.status_code == 302 rv = app.get('/container/create') assert rv.status_code == 302 + rv = app.get('/container/rev/00000000-0000-0000-1111-fff000000002') + assert rv.status_code == 200 + rv = app.get('/editgroup/aaaaaaaaaaaabo53aaaaaaaaaq/container/aaaaaaaaaaaaaeiraaaaaaaaai') + assert rv.status_code == 200 + rv = app.get('/editgroup/aaaaaaaaaaaabo53aaaaaaaaaq/container/aaaaaaaaaaaaaeiraaaaaaaaai/edit') + assert rv.status_code == 302 def test_web_container_login(full_app, app_admin): |