[CMF-checkins] CVS: CMF/CMFDecor/tests - test_all.py:1.3.20.1

Shane Hathaway shane@cvs.zope.org
Wed, 20 Feb 2002 15:15:23 -0500


Update of /cvs-repository/CMF/CMFDecor/tests
In directory cvs.zope.org:/tmp/cvs-serv27999/CMFDecor/tests

Modified Files:
      Tag: cmf-pre-1_3-branch
	test_all.py 
Log Message:
Merged changes from head, with a small change: the types tool does not need
to be extended in such a complex way.  I took out the type_type registry and
the __bobo_traverse__ hook and replaced it with the original code with only
minor mods that give you the same extensibility without all the hacking.
(If anyone actually wants to use the extensibility, which I suspect no one
is actually interested in doing, I will happily provide instructions and
will create a corrected unit test.)


=== CMF/CMFDecor/tests/test_all.py 1.3 => 1.3.20.1 ===
-import unittest
-#from Products.CMFDecor.tests import test_Decor
+from unittest import TestSuite,main
+from Products.CMFCore.tests.base.utils import build_test_suite
 
 def test_suite():
-    suite = unittest.TestSuite()
-    #suite.addTest( test_Decor.test_suite() )
-    return suite
 
-def run():
-    if hasattr( unittest, 'JUnitTextTestRunner' ):
-        unittest.JUnitTextTestRunner().run( test_suite() )
-    else:
-        unittest.TextTestRunner( verbosity=0 ).run( test_suite() )
+    # WHERE DID test_Decor GO? DID IT EVER EXIST?!
+    # return build_test_suite('Products.CMFDecor.tests',['test_Decor'])
+    return TestSuite()
 
 if __name__ == '__main__':
-    run()
+    main(defaultTest='test_suite')