[Checkins] SVN: zope.password/branches/ulif-zpasswd/src/zope/password/tests Move main old testscript to new location.

Uli Fouquet uli at gnufix.de
Fri May 7 09:36:19 EDT 2010


Log message for revision 112130:
  Move main old testscript to new location.

Changed:
  A   zope.password/branches/ulif-zpasswd/src/zope/password/tests/test_password.py
  D   zope.password/branches/ulif-zpasswd/src/zope/password/tests.py

-=-
Copied: zope.password/branches/ulif-zpasswd/src/zope/password/tests/test_password.py (from rev 112125, zope.password/branches/ulif-zpasswd/src/zope/password/tests.py)
===================================================================
--- zope.password/branches/ulif-zpasswd/src/zope/password/tests/test_password.py	                        (rev 0)
+++ zope.password/branches/ulif-zpasswd/src/zope/password/tests/test_password.py	2010-05-07 13:36:18 UTC (rev 112130)
@@ -0,0 +1,28 @@
+##############################################################################
+#
+# Copyright (c) 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.
+#
+##############################################################################
+"""Password Managers Tests
+
+$Id$
+"""
+import unittest
+from zope.testing import doctest
+
+
+def test_suite():
+    return unittest.TestSuite((
+        doctest.DocTestSuite('zope.password.password'),
+        doctest.DocTestSuite(
+            'zope.password.testing',
+            optionflags=doctest.ELLIPSIS),
+        ))

Deleted: zope.password/branches/ulif-zpasswd/src/zope/password/tests.py
===================================================================
--- zope.password/branches/ulif-zpasswd/src/zope/password/tests.py	2010-05-07 13:28:34 UTC (rev 112129)
+++ zope.password/branches/ulif-zpasswd/src/zope/password/tests.py	2010-05-07 13:36:18 UTC (rev 112130)
@@ -1,28 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 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.
-#
-##############################################################################
-"""Password Managers Tests
-
-$Id$
-"""
-import unittest
-from zope.testing import doctest
-
-
-def test_suite():
-    return unittest.TestSuite((
-        doctest.DocTestSuite('zope.password.password'),
-        doctest.DocTestSuite(
-            'zope.password.testing',
-            optionflags=doctest.ELLIPSIS),
-        ))



More information about the checkins mailing list