1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Fixed #26666 -- Added more useful error message to assertRedirects

This commit is contained in:
Tobias McNulty
2016-06-02 13:00:04 -07:00
committed by Markus Holtermann
parent f6517a5335
commit c7b1b81352
2 changed files with 14 additions and 0 deletions

View File

@@ -595,6 +595,15 @@ class ClientTest(TestCase):
response = self.client.get('/django_project_redirect/')
self.assertRedirects(response, 'https://www.djangoproject.com/', fetch_redirect_response=False)
def test_external_redirect_with_fetch_error_msg(self):
"""
Check that assertRedirects without fetch_redirect_response=False raises
a relevant ValueError rather than a non-descript AssertionError.
"""
response = self.client.get('/django_project_redirect/')
with self.assertRaisesMessage(ValueError, 'unable to fetch'):
self.assertRedirects(response, 'https://www.djangoproject.com/')
def test_session_modifying_view(self):
"Request a page that modifies the session"
# Session value isn't set initially