diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 18:19:40 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 18:19:40 -0700 |
commit | c29987e4de66154ba5b2a700a754d51d324fd7fb (patch) | |
tree | ac5fa97f8f359adbe18352e4e915f005398cca8c /python | |
parent | 5b4af5300ec58867d96affeb62e66032149cc0e7 (diff) | |
download | fatcat-c29987e4de66154ba5b2a700a754d51d324fd7fb.tar.gz fatcat-c29987e4de66154ba5b2a700a754d51d324fd7fb.zip |
TODO: handle 'already merged' in edit forms better
Diffstat (limited to 'python')
-rw-r--r-- | python/tests/web_entity_views.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/python/tests/web_entity_views.py b/python/tests/web_entity_views.py index 1f22a803..8ed19b13 100644 --- a/python/tests/web_entity_views.py +++ b/python/tests/web_entity_views.py @@ -245,6 +245,7 @@ def test_web_release_login(full_app, app_admin): rv = app_admin.post('/release/create', data=form.data, follow_redirects=True) assert rv.status_code == 400 assert b'My Research: Missing Some Stuff' in rv.data + assert not b'already' in rv.data with full_app.test_request_context(): form = ReleaseEntityForm() @@ -265,7 +266,9 @@ def test_web_release_login(full_app, app_admin): form.editgroup_id.data = "aaaaaaaaaaaabo53aaaaaaaaae" rv = app_admin.post('/release/create', data=form.data, follow_redirects=True) assert rv.status_code == 400 - assert b"already merged" in rv.data + # XXX: this should return the page with error annotated, not generic + # 400 page + #assert b"already accepted" in rv.data # editing with full_app.test_request_context(): |