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

Michael Hudson mwh@users.sourceforge.net
Mon, 28 Jan 2002 07:31:16 -0800


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

Modified Files:
      Tag: release22-maint
	test_email.py 
Log Message:
It's merge time!

Backport bwarsaw's checkin of revision 1.25:

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.24.4.1
diff -C2 -d -r1.24 -r1.24.4.1
*** test_email.py	2001/12/20 16:37:27	1.24
--- test_email.py	2002/01/28 15:31:14	1.24.4.1
***************
*** 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)