[Python-checkins] python/dist/src/Lib/test test_copy_reg.py,1.4,1.5

loewis@users.sourceforge.net loewis@users.sourceforge.net
Sun, 26 Jan 2003 03:32:46 -0800


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

Modified Files:
	test_copy_reg.py 
Log Message:
Test that True can be copied.


Index: test_copy_reg.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_copy_reg.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** test_copy_reg.py	23 Jul 2002 19:03:46 -0000	1.4
--- test_copy_reg.py	26 Jan 2003 11:32:44 -0000	1.5
***************
*** 22,25 ****
--- 22,29 ----
                            type(1), int, "not a callable")
  
+     def test_bool(self):
+         import copy
+         self.assertEquals(True, copy.copy(True))
+ 
  
  def test_main():