diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 22:32:49 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 22:32:49 +0530 |
commit | f6904b4c12af044eeceab81011ba45f01da42070 (patch) | |
tree | 6f4a56ae1ee805ec33ccea6e35baa037a2ec0be7 /app/tests/test_views.py | |
parent | 4ee8a532909fc97918e727f2f78988867e6e4117 (diff) |
added 403 page and test
Diffstat (limited to 'app/tests/test_views.py')
-rw-r--r-- | app/tests/test_views.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/tests/test_views.py b/app/tests/test_views.py index da0d94b..f4ae4d8 100644 --- a/app/tests/test_views.py +++ b/app/tests/test_views.py @@ -59,6 +59,9 @@ def test_user_auth_flow(app, client): assert res.status_code == 200 assert b"Hi John" in res.data + res = client.get("/admin/user/") + assert res.status_code == 403 + res = client.get("/logout") res = client.post("/signin",data=dict( email="testtest@example.com", |