Skip to content
Snippets Groups Projects
Commit 3f1f0966 authored by Saurabh Kumar's avatar Saurabh Kumar Committed by Fredrik Jonsson
Browse files

Make the test_activation_email_includes_link pass

parent 832217b8
No related branches found
No related tags found
No related merge requests found
from django.core import mail
from django.test import TestCase, override_settings
from django.conf import settings
from hypha.apply.users.tests.factories import UserFactory
......@@ -11,3 +12,4 @@ class TestActivationEmail(TestCase):
def test_activation_email_includes_link(self):
send_activation_email(UserFactory())
self.assertEqual(len(mail.outbox), 1)
self.assertContains(mail.outbox[0], settings.WAGTAILADMIN_BASE_URL)
......@@ -22,3 +22,5 @@ STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage'
PASSWORD_HASHERS = [
'django.contrib.auth.hashers.MD5PasswordHasher',
]
WAGTAILADMIN_BASE_URL = 'http://base-admin-url/'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment