[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/server/tests/test_ftp.py Test file that I forgot to add yesterday.

Jim Fulton jim at zope.com
Thu Jun 3 06:21:24 EDT 2004


Log message for revision 25222:
Test file that I forgot to add yesterday.



-=-
Added: Zope3/trunk/src/zope/app/server/tests/test_ftp.py
===================================================================
--- Zope3/trunk/src/zope/app/server/tests/test_ftp.py	2004-06-03 08:09:09 UTC (rev 25221)
+++ Zope3/trunk/src/zope/app/server/tests/test_ftp.py	2004-06-03 10:21:24 UTC (rev 25222)
@@ -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.server.ftp'),
+        ))
+
+if __name__ == '__main__':
+    unittest.main(defaultTest='test_suite')
+


Property changes on: Zope3/trunk/src/zope/app/server/tests/test_ftp.py
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native




More information about the Zope3-Checkins mailing list