[Zope3-checkins] CVS: Zope3/src/zope/app/tests - test_location.py:1.2

Jim Fulton jim at zope.com
Sun Sep 21 13:33:37 EDT 2003


Update of /cvs-repository/Zope3/src/zope/app/tests
In directory cvs.zope.org:/tmp/cvs-serv15484/src/zope/app/tests

Added Files:
	test_location.py 
Log Message:
New location-modeling support.


=== Zope3/src/zope/app/tests/test_location.py 1.1 => 1.2 ===
--- /dev/null	Sun Sep 21 13:33:37 2003
+++ Zope3/src/zope/app/tests/test_location.py	Sun Sep 21 13:33:36 2003
@@ -0,0 +1,26 @@
+##############################################################################
+#
+# Copyright (c) 2003 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.
+#
+##############################################################################
+"""Location support tests
+
+$Id$
+"""
+import unittest
+from zope.testing.doctestunit import DocTestSuite
+
+
+def test_suite():
+    return DocTestSuite('zope.app.location')
+
+if __name__ == '__main__':
+    unittest.main(defaultTest='test_suite')




More information about the Zope3-Checkins mailing list