[1.11.x] Tested EmailMessage(attachments=[MIMEText])

Backport of aedfe0ddd7 from master
This commit is contained in:
kalombo 2017-04-07 17:54:50 -04:00 committed by Tim Graham
parent 5d35e8eb06
commit a95eba7d98
1 changed files with 6 additions and 0 deletions

View File

@ -387,6 +387,12 @@ class MailTests(HeadersCheckMixin, SimpleTestCase):
self.assertEqual(payload[0].get_content_type(), 'multipart/alternative')
self.assertEqual(payload[1].get_content_type(), 'application/pdf')
def test_attachments_MIMEText(self):
txt = MIMEText('content1')
msg = EmailMessage(attachments=[txt])
payload = msg.message().get_payload()
self.assertEqual(payload[0], txt)
def test_non_ascii_attachment_filename(self):
"""Regression test for #14964"""
headers = {"Date": "Fri, 09 Nov 2001 01:08:47 -0000", "Message-ID": "foo"}