[Checkins] SVN: zope.app.pagetemplate/trunk/ Use zope.container instead of zope.app.container in the tests.

Sylvain Viollon sylvain at infrae.com
Thu Jan 29 13:32:57 EST 2009


Log message for revision 95486:
  Use zope.container instead of zope.app.container in the tests.
  
  

Changed:
  U   zope.app.pagetemplate/trunk/CHANGES.txt
  U   zope.app.pagetemplate/trunk/setup.py
  U   zope.app.pagetemplate/trunk/src/zope/app/pagetemplate/engine.py

-=-
Modified: zope.app.pagetemplate/trunk/CHANGES.txt
===================================================================
--- zope.app.pagetemplate/trunk/CHANGES.txt	2009-01-29 18:32:47 UTC (rev 95485)
+++ zope.app.pagetemplate/trunk/CHANGES.txt	2009-01-29 18:32:56 UTC (rev 95486)
@@ -1,9 +1,10 @@
 Changes
 =======
 
-3.4.2 (unreleased)
-------------------
+3.5 (unreleased)
+----------------
 
+* Use `zope.container` instead of `zope.app.container`.
 
 3.4.1 (2008-07-30)
 ------------------

Modified: zope.app.pagetemplate/trunk/setup.py
===================================================================
--- zope.app.pagetemplate/trunk/setup.py	2009-01-29 18:32:47 UTC (rev 95485)
+++ zope.app.pagetemplate/trunk/setup.py	2009-01-29 18:32:56 UTC (rev 95486)
@@ -5,7 +5,7 @@
                     open('CHANGES.txt').read())
 
 setup(name='zope.app.pagetemplate',
-      version = '3.4.2dev',
+      version = '3.5dev',
       url='http://pypi.python.org/pypi/zope.app.pagetemplate',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
@@ -42,7 +42,8 @@
           "inline-evaluation": ['zope.app.interpreter'],
           # The tests appear not to need zope.app.interpreter; there
           # should be tests for that, though.  :-(
-          "test": ['zope.app.testing',
+          "test": ['zope.container',
+                   'zope.app.testing',
                    'zope.app.securitypolicy',
                    'zope.app.zcmlfiles'],
           },

Modified: zope.app.pagetemplate/trunk/src/zope/app/pagetemplate/engine.py
===================================================================
--- zope.app.pagetemplate/trunk/src/zope/app/pagetemplate/engine.py	2009-01-29 18:32:47 UTC (rev 95485)
+++ zope.app.pagetemplate/trunk/src/zope/app/pagetemplate/engine.py	2009-01-29 18:32:56 UTC (rev 95486)
@@ -320,7 +320,7 @@
     General path expressions provide objects that are wrapped in
     security proxies as well::
 
-      >>> from zope.app.container.sample import SampleContainer
+      >>> from zope.container.sample import SampleContainer
       >>> from zope.app.testing.placelesssetup import setUp, tearDown
       >>> from zope.security.checker import NamesChecker, defineChecker
 



More information about the Checkins mailing list