in_response_to metadata added.

svn path=/plone.app.discussion/trunk/; revision=27789
This commit is contained in:
Timo Stollenwerk
2009-07-03 08:03:09 +00:00
parent d70d872f95
commit 072f903c3a
6 changed files with 19 additions and 9 deletions
+6 -8
View File
@@ -144,14 +144,12 @@ class CommentIndexersTest(PloneTestCase):
def test_creator(self):
self.assertEquals(catalog.creator(self.comment)(), ('Jim'))
def test_in_reply_to(self):
pass
def test_review_state(self):
pass
def test_object_provides(self):
pass
def test_in_response_to(self):
# make sure in_response_to returns the title or id of the content
# object the comment was added to
self.assertEquals(catalog.in_response_to(self.comment)(), 'doc1')
self.portal.doc1.title = 'Document 1'
self.assertEquals(catalog.in_response_to(self.comment)(), 'Document 1')
def test_suite():
return unittest.defaultTestLoader.loadTestsFromName(__name__)