[Zope3-checkins]
SVN: Zope3/trunk/src/zope/app/publication/tests/test_httpfactory.py
Changed XXX to ZZZ in tests,
so that its does not get included in the
Stephan Richter
srichter at cosmos.phy.tufts.edu
Thu Jul 8 14:38:15 EDT 2004
Log message for revision 26210:
Changed XXX to ZZZ in tests, so that its does not get included in the
list of XXX todo items.
-=-
Modified: Zope3/trunk/src/zope/app/publication/tests/test_httpfactory.py
===================================================================
--- Zope3/trunk/src/zope/app/publication/tests/test_httpfactory.py 2004-07-08 18:23:56 UTC (rev 26209)
+++ Zope3/trunk/src/zope/app/publication/tests/test_httpfactory.py 2004-07-08 18:38:14 UTC (rev 26210)
@@ -11,10 +11,10 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""Tests for the HTTP Publication Request Factory.
+
$Id$
"""
-
from unittest import TestCase, TestSuite, main, makeSuite
from zope.app.publication.httpfactory import HTTPPublicationRequestFactory
from zope.publisher.browser import BrowserRequest
@@ -50,7 +50,7 @@
def test_http(self):
- for method in ('PUT', 'put', 'XXX'):
+ for method in ('PUT', 'put', 'ZZZ'):
self.__env['REQUEST_METHOD'] = method
r = self.__factory(StringIO(''), StringIO(), self.__env)
self.assertEqual(r.__class__, HTTPRequest)
@@ -72,7 +72,7 @@
self.assertEqual(r.__class__, BrowserRequest)
self.assertEqual(r.publication.__class__, BrowserPublication)
- for method in ('PUT', 'put', 'XXX'):
+ for method in ('PUT', 'put', 'ZZZ'):
self.__env['REQUEST_METHOD'] = method
r = self.__factory(StringIO(''), StringIO(), self.__env)
self.assertEqual(r.__class__, HTTPRequest)
More information about the Zope3-Checkins
mailing list