Fix the comment view test.

svn path=/plone.app.discussion/trunk/; revision=39629
This commit is contained in:
Timo Stollenwerk 2010-09-03 21:23:44 +00:00
parent 34f1106748
commit a4011ce414
1 changed files with 7 additions and 2 deletions

View File

@ -10,6 +10,8 @@ from plone.app.discussion.tests.layer import DiscussionLayer
from plone.app.discussion.interfaces import IComment, IConversation, IReplies
from plone.app.discussion.browser.comment import View
class CommentTest(PloneTestCase):
@ -125,8 +127,11 @@ class CommentTest(PloneTestCase):
self.failUnless(getMultiAdapter((comment, self.app.REQUEST),
name='view'))
# TODO: is this correct? Redirect ist 301
self.assertEquals(200, self.app.REQUEST.response.getStatus())
# make sure the HTTP redirect (status code 302) works when a comment
# is called directly
view = View(comment, self.app.REQUEST)
View.__call__(view)
self.assertEquals(self.app.REQUEST.response.status, 302)
class RepliesTest(PloneTestCase):