﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
7891	Auth Test Suite not always valid	Adrian Ribao		"Hello, the PasswordReset TestCase is not always valid, specifically the:

{{{
def test_email_not_found(self):
        ""Error is raised if the provided email address isn't currently registered""
        response = self.client.get('/password_reset/')
        self.assertEquals(response.status_code, 200)
        response = self.client.post('/password_reset/', {'email': 'not_a_real_email@email.com'})
        self.assertContains(response, ""That e-mail address doesn't have an associated user account"")
        self.assertEquals(len(mail.outbox), 0)
}}}
In my case, the url /password_reset/ doesn't exist.
"		closed	contrib.auth	dev		worksforme	testcase test authentication email not found	aribao@…	Unreviewed	0	0	0	0	0	0
