[CMF-checkins] 
	SVN: CMF/branches/2.0/DCWorkflow/tests/test_exportimport.py
	Make tests pass with zope 2.10.
    Florent Guillaume 
    fg at nuxeo.com
       
    Wed Jul  5 13:13:18 EDT 2006
    
    
  
Log message for revision 68983:
  Make tests pass with zope 2.10.
  
Changed:
  U   CMF/branches/2.0/DCWorkflow/tests/test_exportimport.py
-=-
Modified: CMF/branches/2.0/DCWorkflow/tests/test_exportimport.py
===================================================================
--- CMF/branches/2.0/DCWorkflow/tests/test_exportimport.py	2006-07-05 17:11:59 UTC (rev 68982)
+++ CMF/branches/2.0/DCWorkflow/tests/test_exportimport.py	2006-07-05 17:13:18 UTC (rev 68983)
@@ -81,6 +81,14 @@
         zcml.load_config('permissions.zcml', Products.Five)
         zcml.load_config('configure.zcml', Products.DCWorkflow)
         zcml.load_config('configure.zcml', Products.GenericSetup.PythonScripts)
+        try:
+            import zope.traversing
+        except ImportError:
+            # BBB: Zope < 2.10
+            pass
+        else:
+            # Traversal adapters are needed for TALES
+            zcml.load_config('configure.zcml', zope.traversing)
 
     def _initDCWorkflow( self, workflow_id ):
 
    
    
More information about the CMF-checkins
mailing list