comment out CommentForm test.

svn path=/plone.app.discussion/trunk/; revision=33845
This commit is contained in:
Timo Stollenwerk 2010-02-07 11:37:34 +00:00
parent ef44980649
commit 23eeb041aa
1 changed files with 6 additions and 6 deletions

View File

@ -45,12 +45,12 @@ class TestCommentForm(PloneTestCase):
form = CommentForm(self.viewlet, self.app.REQUEST)
#self.viewlet.form.render(form)
#self.viewlet.form.handleComment()
from z3c.form.testing import TestRequest
request = TestRequest(form={
'form.widgets.title': u'bar',
'form.widgets.text': u'foo',}
)
cf = CommentForm(self.viewlet, request)
#from z3c.form.testing import TestRequest
#request = TestRequest(form={
# 'form.widgets.title': u'bar',
# 'form.widgets.text': u'foo',}
#)
#cf = CommentForm(self.viewlet, request)
#cf.handleComments()
# Zope publisher uses Python list to mark <select> values
#self.portal.REQUEST["form.widgets.title"] = u"foo"