Do not check for a comment review workflow when sending out a moderator email notification. This fixes http://dev.plone.org/plone/ticket/11444. Refs #11444

svn path=/plone.app.discussion/branches/1.x/; revision=47189
This commit is contained in:
Timo Stollenwerk
2011-02-02 19:55:24 +00:00
parent 7dfd4ac98c
commit de4353641b
3 changed files with 4 additions and 20 deletions
@@ -256,18 +256,5 @@ class TestModeratorNotificationUnit(PloneTestCase):
self.conversation.addComment(comment)
self.assertEquals(len(self.mailhost.messages), 0)
def test_do_not_notify_moderator_when_moderation_workflow_is_disabled(self):
# Disable comment moderation and make sure no email is send to the
# moderator.
self.portal.portal_types['Document'].allow_discussion = True
self.portal.portal_workflow.setChainForPortalTypes(
('Discussion Item',),
('one_state_workflow',))
comment = createObject('plone.Comment')
comment.text = 'Comment text'
self.conversation.addComment(comment)
self.assertEquals(len(self.mailhost.messages), 0)
def test_suite():
return unittest.defaultTestLoader.loadTestsFromName(__name__)