[Checkins] SVN: zope.location/trunk/ Rename to indicate current purpose.

Tres Seaver cvs-admin at zope.org
Thu Jun 7 02:31:29 UTC 2012


Log message for revision 126655:
  Rename to indicate current purpose.

Changed:
  _U  zope.location/trunk/
  A   zope.location/trunk/src/zope/location/tests/test_configure.py
  D   zope.location/trunk/src/zope/location/tests/test_doctests.py

-=-
Copied: zope.location/trunk/src/zope/location/tests/test_configure.py (from rev 126654, zope.location/trunk/src/zope/location/tests/test_doctests.py)
===================================================================
--- zope.location/trunk/src/zope/location/tests/test_configure.py	                        (rev 0)
+++ zope.location/trunk/src/zope/location/tests/test_configure.py	2012-06-07 02:31:26 UTC (rev 126655)
@@ -0,0 +1,40 @@
+##############################################################################
+#
+# Copyright (c) 2003-2009 Zope Foundation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (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.
+#
+##############################################################################
+"""Test ZCML loading
+"""
+import unittest
+
+class Test_ZCML_loads(unittest.TestCase):
+
+    def test_it(self):
+        try:
+            from zope.configuration.xmlconfig import _clearContext
+            from zope.configuration.xmlconfig import _getContext
+            from zope.configuration.xmlconfig import XMLConfig
+        except ImportError:
+            pass
+        else:
+            import zope.location
+            _clearContext()
+            context = _getContext()
+            XMLConfig('configure.zcml', zope.location)
+            adapters = ([x for x in context.actions
+                            if x['discriminator'] is not None])
+            self.assertEqual(len(adapters), 4)
+        
+
+def test_suite():
+    return unittest.TestSuite((
+        unittest.makeSuite(Test_ZCML_loads),
+    ))

Deleted: zope.location/trunk/src/zope/location/tests/test_doctests.py
===================================================================
--- zope.location/trunk/src/zope/location/tests/test_doctests.py	2012-06-07 02:31:16 UTC (rev 126654)
+++ zope.location/trunk/src/zope/location/tests/test_doctests.py	2012-06-07 02:31:26 UTC (rev 126655)
@@ -1,40 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2003-2009 Zope Foundation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (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.
-#
-##############################################################################
-"""Test ZCML loading
-"""
-import unittest
-
-class Test_ZCML_loads(unittest.TestCase):
-
-    def test_it(self):
-        try:
-            from zope.configuration.xmlconfig import _clearContext
-            from zope.configuration.xmlconfig import _getContext
-            from zope.configuration.xmlconfig import XMLConfig
-        except ImportError:
-            pass
-        else:
-            import zope.location
-            _clearContext()
-            context = _getContext()
-            XMLConfig('configure.zcml', zope.location)
-            adapters = ([x for x in context.actions
-                            if x['discriminator'] is not None])
-            self.assertEqual(len(adapters), 4)
-        
-
-def test_suite():
-    return unittest.TestSuite((
-        unittest.makeSuite(Test_ZCML_loads),
-    ))



More information about the checkins mailing list