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
@@ -22,6 +22,7 @@ class CatalogSetupTest(PloneTestCase):
self.failUnless('total_comments' in self.portal.portal_catalog.indexes())
self.failUnless('commentators' in self.portal.portal_catalog.indexes())
self.failUnless('total_comments' in self.portal.portal_catalog.schema())
self.failUnless('in_response_to' in self.portal.portal_catalog.schema())
def test_collection_criteria_installed(self):
try:
@@ -212,5 +213,10 @@ class CommentCatalogTest(PloneTestCase):
def test_creator(self):
self.assertEquals(self.comment_brain.Creator, 'Jim')
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(self.comment_brain.in_response_to, 'doc1')
def test_suite():
return unittest.defaultTestLoader.loadTestsFromName(__name__)
+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__)