[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/ftests/test_introspector.py remove redundant test of the introspector

Fred L. Drake, Jr. fdrake at gmail.com
Wed Mar 16 14:47:37 EST 2005


Log message for revision 29513:
  remove redundant test of the introspector

Changed:
  D   Zope3/trunk/src/zope/app/ftests/test_introspector.py

-=-
Deleted: Zope3/trunk/src/zope/app/ftests/test_introspector.py
===================================================================
--- Zope3/trunk/src/zope/app/ftests/test_introspector.py	2005-03-16 16:35:31 UTC (rev 29512)
+++ Zope3/trunk/src/zope/app/ftests/test_introspector.py	2005-03-16 19:47:37 UTC (rev 29513)
@@ -1,37 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2003 Zope Corporation 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.
-#
-##############################################################################
-"""Introspector funcional tests
-
-$Id$
-"""
-__docformat__ = 'restructuredtext'
-
-import unittest
-from zope.app.testing.functional import BrowserTestCase
-
-
-class TestIntrospector(BrowserTestCase):
-
-    def test_introspector(self):
-        response = self.publish('/@@introspector.html', basic='mgr:mgrpw')
-        self.assertEquals(response.getStatus(), 302)
-
-def test_suite():
-    suite = unittest.TestSuite()
-    suite.addTest(unittest.makeSuite(TestIntrospector))
-    return suite
-
-
-if __name__ == '__main__':
-    unittest.main(defaultTest='test_suite')



More information about the Zope3-Checkins mailing list