[Checkins] SVN: van.testing/trunk/ Remove support for local component registrys (zope.site). This brings in the

Brian Sutherland jinty at web.de
Fri Apr 3 04:43:08 EDT 2009


Log message for revision 98820:
  Remove support for local component registrys (zope.site). This brings in the
  whole ZODB as zope.site's tests currently depend on it.
  

Changed:
  U   van.testing/trunk/CHANGES.txt
  U   van.testing/trunk/setup.py
  U   van.testing/trunk/van/testing/layer.py

-=-
Modified: van.testing/trunk/CHANGES.txt
===================================================================
--- van.testing/trunk/CHANGES.txt	2009-04-03 08:35:27 UTC (rev 98819)
+++ van.testing/trunk/CHANGES.txt	2009-04-03 08:43:08 UTC (rev 98820)
@@ -1,13 +1,15 @@
 Changes
 =======
 
-2.0.1 (unknown)
+3.0.0 (unknown)
 ------------------
 
 - Allow users to specify the domain and port of the wsgi_intercept_layer by
   adding those attributes to the class.
 - Fix testbrowser support a bit so that it performs more like
   zope.testbrowser.testing.Browser.
+- Remove support for local component registrys (zope.site). This brings in the
+  whole ZODB as zope.site's tests currently depend on it.
 
 2.0.0 (2009-04-01)
 ------------------

Modified: van.testing/trunk/setup.py
===================================================================
--- van.testing/trunk/setup.py	2009-04-03 08:35:27 UTC (rev 98819)
+++ van.testing/trunk/setup.py	2009-04-03 08:43:08 UTC (rev 98820)
@@ -34,7 +34,6 @@
       install_requires=[
           'setuptools',
           'wsgi_intercept',
-          'zope.app.component',
           'zope.component',
           'zope.configuration',
           'zope.testing',

Modified: van.testing/trunk/van/testing/layer.py
===================================================================
--- van.testing/trunk/van/testing/layer.py	2009-04-03 08:35:27 UTC (rev 98819)
+++ van.testing/trunk/van/testing/layer.py	2009-04-03 08:43:08 UTC (rev 98820)
@@ -12,7 +12,6 @@
 #
 ##############################################################################
 from zope.configuration import xmlconfig
-from zope.app.component import hooks # BBB: import from zope.site at a later date
 from zope.testing.cleanup import cleanUp
 import wsgi_intercept
 
@@ -77,7 +76,6 @@
     """
 
     def setUp(cls):
-        hooks.setHooks()
         context = xmlconfig.file(cls.zcml)
     layer.setUp = classmethod(setUp)
 



More information about the Checkins mailing list