[CMF-checkins] CVS: CMF/CMFTracker/tests - test_all.py:1.4

Chris Withers chrisw@nipltd.com
Fri, 15 Feb 2002 14:46:05 -0500


Update of /cvs-repository/CMF/CMFTracker/tests
In directory cvs.zope.org:/tmp/cvs-serv10707/CMFTracker/tests

Modified Files:
	test_all.py 
Log Message:
The unit tests hopefully smell better now. Please try and keep them this way. Look in CMFCore/tests/base for commonly used artifacts.

=== CMF/CMFTracker/tests/test_all.py 1.3 => 1.4 ===
-from Products.CMFTracker.tests import test_IssueDescription
+import Zope
+from unittest import main
+from Products.CMFCore.tests.base.utils import build_test_suite
 
 def test_suite():
-    suite = unittest.TestSuite()
-    suite.addTest( test_IssueDescription.test_suite() )
-    return suite
 
-def run():
-    if hasattr( unittest, 'JUnitTextTestRunner' ):
-        unittest.JUnitTextTestRunner().run( test_suite() )
-    else:
-        unittest.TextTestRunner( verbosity=0 ).run( test_suite() )
+    return build_test_suite('Products.CMFTracker.tests',[
+        'test_IssueDescription',
+        ])
 
 if __name__ == '__main__':
-    run()
+    main(defaultTest='test_suite')