Refs #24944 -- Added test for overriding domain in email context in PasswordResetView.
This commit is contained in:
parent
0670b1b403
commit
aff61790a3
|
@ -134,6 +134,7 @@ class PasswordResetTest(AuthViewsTestCase):
|
|||
self.assertEqual(response.status_code, 302)
|
||||
self.assertEqual(len(mail.outbox), 1)
|
||||
self.assertIn('Email email context: "Hello!"', mail.outbox[0].body)
|
||||
self.assertIn('http://custom.example.com/reset/', mail.outbox[0].body)
|
||||
|
||||
def test_html_mail_template(self):
|
||||
"""
|
||||
|
|
|
@ -91,7 +91,10 @@ urlpatterns = auth_urlpatterns + [
|
|||
path('password_reset_from_email/', views.PasswordResetView.as_view(from_email='staffmember@example.com')),
|
||||
path(
|
||||
'password_reset_extra_email_context/',
|
||||
views.PasswordResetView.as_view(extra_email_context={'greeting': 'Hello!'})),
|
||||
views.PasswordResetView.as_view(
|
||||
extra_email_context={'greeting': 'Hello!', 'domain': 'custom.example.com'},
|
||||
),
|
||||
),
|
||||
path(
|
||||
'password_reset/custom_redirect/',
|
||||
views.PasswordResetView.as_view(success_url='/custom/')),
|
||||
|
|
Loading…
Reference in New Issue