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

Chris McDonough chrism@zope.com
Mon, 23 Jun 2003 18:46:45 -0400


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

Added Files:
	test_ordered.py 
Log Message:
Merge pluggable_authentication_service-branch to HEAD.

You can now use a pluggable authentication service in place of a simple authentication service.


=== Zope3/src/zope/app/container/tests/test_ordered.py 1.1 => 1.2 ===
--- /dev/null	Mon Jun 23 18:46:45 2003
+++ Zope3/src/zope/app/container/tests/test_ordered.py	Mon Jun 23 18:46:15 2003
@@ -0,0 +1,32 @@
+##############################################################################
+#
+# 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.
+#
+##############################################################################
+"""Test the OrderedContainer.
+
+
+$Id$
+"""
+
+import unittest
+from zope.interface import *
+from zope.testing.doctestunit import DocTestSuite
+from zope.interface import Interface
+
+def test_suite():
+    suite = unittest.TestSuite()
+    suite.addTest(DocTestSuite("zope.app.container.ordered"))
+
+    return suite
+
+if __name__ == '__main__':
+    unittest.main()