summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-11-05 21:04:52 (GMT)
committerBarry Warsaw <barry@python.org>2002-11-05 21:04:52 (GMT)
commit48b0a1c6038f881efb21332045c752805a09393d (patch)
tree8f5fd00e0156b93cad6d40e7234f2e2b928ed897 /Lib
parent5c9130ec466f531b7cea6302c762d8a29641b219 (diff)
downloadcpython-48b0a1c6038f881efb21332045c752805a09393d.zip
cpython-48b0a1c6038f881efb21332045c752805a09393d.tar.gz
cpython-48b0a1c6038f881efb21332045c752805a09393d.tar.bz2
test_text_plain_in_a_multipart_digest(): A test of the fix for SF bug
#631350, where a subobject in a multipart/digest isn't a message/rfc822.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/email/test/test_email.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py
index 6a36581..09ff708 100644
--- a/Lib/email/test/test_email.py
+++ b/Lib/email/test/test_email.py
@@ -1494,6 +1494,10 @@ class TestIdempotent(TestEmailBase):
msg, text = self._msgobj('msg_33.txt')
self._idempotent(msg, text)
+ def test_text_plain_in_a_multipart_digest(self):
+ msg, text = self._msgobj('msg_34.txt')
+ self._idempotent(msg, text)
+
def test_content_type(self):
eq = self.assertEquals
unless = self.failUnless