[Python-checkins] CVS: python/dist/src/Lib/test test_email.py,1.24,1.25

Barry Warsaw bwarsaw@users.sourceforge.net
Sat, 26 Jan 2002 22:48:50 -0800


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

Modified Files:
	test_email.py 
Log Message:
test_multipart_one_part(): Idempotency test case for a multipart/*
with only one subpart.


Index: test_email.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_email.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** test_email.py	2001/12/20 16:37:27	1.24
--- test_email.py	2002/01/27 06:48:47	1.25
***************
*** 1,3 ****
! # Copyright (C) 2001 Python Software Foundation
  # email package unit tests
  
--- 1,3 ----
! # Copyright (C) 2001,2002 Python Software Foundation
  # email package unit tests
  
***************
*** 789,792 ****
--- 789,796 ----
      def test_preamble_epilogue(self):
          msg, text = self._msgobj('msg_21.txt')
+         self._idempotent(msg, text)
+ 
+     def test_multipart_one_part(self):
+         msg, text = self._msgobj('msg_23.txt')
          self._idempotent(msg, text)