diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-23 19:37:36 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-23 19:38:28 -0700 |
commit | 2688e18228e15558c99f1372f003ca95e7be4523 (patch) | |
tree | a1d820f58d228f36f60c69dd43d22ee884f41bf6 /tests/routes.py | |
parent | d22bd9cd651c99ffc337c3516b02f84975f001a1 (diff) | |
download | fatcat-2688e18228e15558c99f1372f003ca95e7be4523.tar.gz fatcat-2688e18228e15558c99f1372f003ca95e7be4523.zip |
editgroup view
Diffstat (limited to 'tests/routes.py')
-rw-r--r-- | tests/routes.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/routes.py b/tests/routes.py index 194dc865..49afc5ce 100644 --- a/tests/routes.py +++ b/tests/routes.py @@ -29,3 +29,6 @@ def test_all_views(rich_app): rv = app.get('/v0/work/random') rv = app.get(rv.location) assert rv.status_code == 200 + + rv = app.get('/editgroup/1') + assert rv.status_code == 200 |