[Zope3-checkins] SVN: Zope3/branches/jim-default-traversal/src/zope/app/publication/tests/test_traversers.py Checking in test I forgot to add in 26976

Jim Fulton jim at zope.com
Tue Aug 10 15:57:14 EDT 2004


Log message for revision 26977:
  Checking in test I forgot to add in 26976
  


Changed:
  A   Zope3/branches/jim-default-traversal/src/zope/app/publication/tests/test_traversers.py


-=-
Added: Zope3/branches/jim-default-traversal/src/zope/app/publication/tests/test_traversers.py
===================================================================
--- Zope3/branches/jim-default-traversal/src/zope/app/publication/tests/test_traversers.py	2004-08-10 19:55:52 UTC (rev 26976)
+++ Zope3/branches/jim-default-traversal/src/zope/app/publication/tests/test_traversers.py	2004-08-10 19:57:14 UTC (rev 26977)
@@ -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.publication.traversers'),
+        ))
+
+if __name__ == '__main__':
+    unittest.main(defaultTest='test_suite')
+


Property changes on: Zope3/branches/jim-default-traversal/src/zope/app/publication/tests/test_traversers.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native



More information about the Zope3-Checkins mailing list