From 48b0a1c6038f881efb21332045c752805a09393d Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 5 Nov 2002 21:04:52 +0000 Subject: 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. --- Lib/email/test/test_email.py | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit v0.12