[CMF-checkins] CVS: CMF/CMFCore/tests - test_all.py:1.22

Yvo Schubbe schubbe at web.de
Fri Jan 2 07:46:42 EST 2004


Update of /cvs-repository/CMF/CMFCore/tests
In directory cvs.zope.org:/tmp/cvs-serv23479/CMFCore/tests

Modified Files:
	test_all.py 
Log Message:
- sortet tests and added missing tests


=== CMF/CMFCore/tests/test_all.py 1.21 => 1.22 ===
--- CMF/CMFCore/tests/test_all.py:1.21	Mon Jan  6 15:41:20 2003
+++ CMF/CMFCore/tests/test_all.py	Fri Jan  2 07:46:11 2004
@@ -1,35 +1,44 @@
-import Zope
 from unittest import main
+
+import Testing
+import Zope
+try:
+    Zope.startup()
+except AttributeError:
+    # for Zope versions before 2.6.1
+    pass
+
 from Products.CMFCore.tests.base.utils import build_test_suite
 
 def test_suite():
-
     return build_test_suite('Products.CMFCore.tests',[
-        'test_ContentTypeRegistry',
-        'test_DynamicType',
-        'test_PortalContent',
-        'test_PortalFolder',
-        'test_TypesTool',
-        'test_WorkflowTool',
-        'test_ActionsTool',
         'test_ActionInformation',
         'test_ActionProviderBase',
-        'test_Expression',
+        'test_ActionsTool',
+        'test_CachingPolicyManager',
         'test_CatalogTool',
+        'test_ContentTypeRegistry',
         'test_DirectoryView',
+        'test_DiscussionTool',
+        'test_DynamicType',
+        'test_Expression',
         'test_FSFile',
-        'test_FSPythonScript',
-        'test_FSPageTemplate',
         'test_FSImage',
-        'test_CachingPolicyManager',
+        'test_FSMetadata',
+        'test_FSPageTemplate',
+        'test_FSPythonScript',
         'test_FSSecurity',
-        'test_DiscussionTool',
         'test_MemberDataTool',
         'test_MembershipTool',
+        'test_OpaqueItems',
+        'test_PortalContent',
+        'test_PortalFolder',
         'test_RegistrationTool',
         'test_SkinsTool',
+        'test_TypesTool',
         'test_UndoTool',
         'test_URLTool',
+        'test_WorkflowTool',
         ])
 
 if __name__ == '__main__':




More information about the CMF-checkins mailing list