在 Django 单元测试驱动程序中,如何测试是否发送了电子邮件?
问问题
715 次
2 回答
5
我不是 Django 大师(委婉地说),但看起来这里有一些关于测试电子邮件的文档:测试 Django 应用程序 | 电子邮件服务。请注意,演示的方法适用于 Django 1.0 和更高版本。
于 2010-01-29T02:07:41.703 回答
1
这是忘记密码api调用的一些代码
def test_forgot_password(self):
"""
This test makes sure the forgot password api call is working ...
"""
data = {
'username' : self.user.email,
}
self.assertTrue(self.user.forgot_pw_hash is None)
response = self.c.post(reverse('api_forgot_password'), data, HTTP_X_REQUESTED_WITH='XMLHttpRequest')
# make sure there is an email in the out box and make sure
# the subject is correct
self.assertEquals(mail.outbox[0].subject,'Reset Password')
self.assertTrue(User.objects.get(email=self.user.email).forgot_pw_hash is not None)
于 2012-11-20T15:06:08.213 回答