[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/pagetemplate/tests/test_engine.py Changed the tales ob/adapter: mechanism to use named adapters to IPathAdapter

Jim Fulton jim at zope.com
Wed Jun 2 08:44:28 EDT 2004


Log message for revision 25176:
Changed the tales ob/adapter: mechanism to use named adapters to IPathAdapter

I forgot to add this file, so it didn't get checked in yesterday.



-=-
Added: Zope3/trunk/src/zope/app/pagetemplate/tests/test_engine.py
===================================================================
--- Zope3/trunk/src/zope/app/pagetemplate/tests/test_engine.py	2004-06-02 10:41:32 UTC (rev 25175)
+++ Zope3/trunk/src/zope/app/pagetemplate/tests/test_engine.py	2004-06-02 12:44:28 UTC (rev 25176)
@@ -0,0 +1,28 @@
+##############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""XXX short summary goes here.
+
+$Id$
+"""
+import unittest
+from zope.testing.doctestunit import DocTestSuite
+
+def test_suite():
+    return unittest.TestSuite((
+        DocTestSuite('zope.app.pagetemplate.engine'),
+        ))
+
+if __name__ == '__main__':
+    unittest.main(defaultTest='test_suite')
+


Property changes on: Zope3/trunk/src/zope/app/pagetemplate/tests/test_engine.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native




More information about the Zope3-Checkins mailing list