0
我不知道爲什麼,當我運行測試它總是失敗,Asse田:0 = 1 即使r的結果是1測試SEND_EMAIL不工作
class UserProfileTaskTest(TestCase):
def test_send_email(self):
subject = 'subject'
body = 'body'
from_email = '[email protected]'
recipient_list = ['[email protected]']
r = send_mail(
subject=subject,
message=body,
from_email=from_email,
recipient_list=recipient_list
)
print(r)
self.assertEqual(len(outbox), 1)
什麼是發件箱? – vZ10
我敢打賭,他們正在像這樣''從django.core.mail導入發件箱'導入它' – Brobin
@Brobin是我導入它就像:)我剛剛開始學習Django我不知道這是一個特殊的屬性。 – mengkheang