[Zope-Checkins] CVS: Zope/lib/python/ZODB/tests - testSerialize.py:1.3

Jeremy Hylton jeremy at zope.com
Thu Feb 19 13:24:22 EST 2004


Update of /cvs-repository/Zope/lib/python/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv20838/lib/python/ZODB/tests

Modified Files:
	testSerialize.py 
Log Message:
Backport the last of Fred's changes.

Include ZODB.serialize tests.


=== Zope/lib/python/ZODB/tests/testSerialize.py 1.2 => 1.3 ===
--- Zope/lib/python/ZODB/tests/testSerialize.py:1.2	Wed Feb 18 21:59:10 2004
+++ Zope/lib/python/ZODB/tests/testSerialize.py	Thu Feb 19 13:24:22 2004
@@ -118,4 +118,7 @@
 
 
 def test_suite():
-    return unittest.makeSuite(SerializerTestCase)
+    import doctest
+    suite = unittest.makeSuite(SerializerTestCase)
+    suite.addTest(doctest.DocTestSuite("ZODB.serialize"))
+    return suite




More information about the Zope-Checkins mailing list