diff options
author | Barry Warsaw <barry@python.org> | 2002-11-05 21:04:52 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-11-05 21:04:52 (GMT) |
commit | 48b0a1c6038f881efb21332045c752805a09393d (patch) | |
tree | 8f5fd00e0156b93cad6d40e7234f2e2b928ed897 /Lib | |
parent | 5c9130ec466f531b7cea6302c762d8a29641b219 (diff) | |
download | cpython-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.py | 4 |
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 |