diff --git a/authentication/tests.py b/authentication/tests.py index becf899..ecf7798 100644 --- a/authentication/tests.py +++ b/authentication/tests.py @@ -362,3 +362,29 @@ class ActionBarTests(TestCase): self.assertContains(response, "btn-error") self.assertContains(response, 'type="submit"') + + +class SignOutPageTests(TestCase): + def setUp(self): + self.user = User.objects.create_user(email="mfa@example.com", password="pw-secret-123") + self.client.force_login(self.user) + self.response = self.client.get(reverse("account_logout")) + + def test_sign_out_and_cancel_sit_side_by_side_with_icons(self): + html = self.response.content.decode() + cancel = html[html.index('') :] + sign_out = html[html.index(' + + +{% endblock content %}