[CMF-checkins] CVS: CMF/CMFCalendar/tests - test_all.py:1.3.26.1
Chris Withers
chrisw@nipltd.com
Tue, 12 Feb 2002 09:13:11 -0500
Update of /cvs-repository/CMF/CMFCalendar/tests
In directory cvs.zope.org:/tmp/cvs-serv10109/CMFCalendar/tests
Modified Files:
Tag: ChrisW-refactor_tests-branch
test_all.py
Log Message:
Factored out the crap in test_all so adding new test modules is a lot easier.
=== CMF/CMFCalendar/tests/test_all.py 1.3 => 1.3.26.1 ===
-import unittest
-
-from Products.CMFCalendar.tests import test_Event
+from unittest import main
+from Products.CMFCore.tests.base.utils import build_test_suite
def test_suite():
- suite = unittest.TestSuite()
- suite.addTest( test_Event.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.CMFCalendar.tests',['test_Event'])
if __name__ == '__main__':
- run()
+ main(defaultTest='test_suite')