[Zope-Checkins] CVS: Zope3 - ut.py:1.1.2.4
Jim Fulton
jim@zope.com
Fri, 22 Feb 2002 13:48:24 -0500
Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv7562
Modified Files:
Tag: Zope-3x-branch
ut.py
Log Message:
Added cleanup framework to the test template.
=== Zope3/ut.py 1.1.2.3 => 1.1.2.4 ===
import unittest, sys
+from Zope.Testing.CleanUp import CleanUp # Base class w registry cleanup
-class Test(unittest.TestCase):
+class Test(CleanUp, unittest.TestCase):
pass
def test_suite():