[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher/Browser/tests - testBrowserRequest.py:1.3
Steve Alexander
steve@cat-box.net
Tue, 11 Jun 2002 09:58:43 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher/Browser/tests
In directory cvs.zope.org:/tmp/cvs-serv9605/lib/python/Zope/Publisher/Browser/tests
Modified Files:
testBrowserRequest.py
Log Message:
corrected BrowserRequest._form to .form
=== Zope3/lib/python/Zope/Publisher/Browser/tests/testBrowserRequest.py 1.2 => 1.3 ===
'http://foobar.com/folder/item2/view/index')
+ def testForm(self):
+ request = self._createRequest()
+ response = request.getResponse()
+ publish(request)
+ self.assertEqual(request.form,
+ {'a':'5', 'b':6})
def test_suite():
loader = unittest.TestLoader()