[Python-checkins] python/dist/src/Lib/email/test test_email.py,1.22,1.23

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Tue, 05 Nov 2002 13:04:54 -0800


Update of /cvsroot/python/python/dist/src/Lib/email/test
In directory usw-pr-cvs1:/tmp/cvs-serv24473

Modified Files:
	test_email.py 
Log Message:
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.


Index: test_email.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/test/test_email.py,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** test_email.py	21 Oct 2002 05:43:58 -0000	1.22
--- test_email.py	5 Nov 2002 21:04:52 -0000	1.23
***************
*** 1495,1498 ****
--- 1495,1502 ----
          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