[Zope3-checkins] CVS: Zope3/src/zope/app/tests - test_context.py:1.2
Jim Fulton
jim@zope.com
Mon, 2 Jun 2003 12:29:45 -0400
Update of /cvs-repository/Zope3/src/zope/app/tests
In directory cvs.zope.org:/tmp/cvs-serv663
Modified Files:
test_context.py
Log Message:
Added code to include tests from zope.app.context.
=== Zope3/src/zope/app/tests/test_context.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/tests/test_context.py:1.1 Mon Jun 2 07:05:53 2003
+++ Zope3/src/zope/app/tests/test_context.py Mon Jun 2 12:29:44 2003
@@ -225,5 +225,10 @@
CustomPicklingError
"""
-def test_suite(): return DocTestSuite()
+def test_suite():
+ suite = DocTestSuite()
+ suite.addTest(DocTestSuite('zope.app.context'))
+ return suite
+
+
if __name__ == '__main__': unittest.main()