From: Barry Warsaw Date: Tue, 5 Nov 2002 21:04:52 +0000 (+0000) Subject: test_text_plain_in_a_multipart_digest(): A test of the fix for SF bug X-Git-Tag: v2.3c1~3565 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48b0a1c6038f881efb21332045c752805a09393d;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index 6a365815548f..09ff70877c18 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