Test for mime type transformation from html to html added.

This commit is contained in:
Timo Stollenwerk 2012-06-15 21:15:02 +02:00
parent eded7f1059
commit f45373b311
1 changed files with 7 additions and 0 deletions

View File

@ -161,6 +161,13 @@ class CommentTest(unittest.TestCase):
'Go to <a href="http://www.plone.org" ' +
'rel="nofollow">http://www.plone.org</a>')
def test_getText_uses_comment_mime_type_html(self):
comment1 = createObject('plone.Comment')
comment1.text = 'Go to <a href="http://www.plone.org">plone.org</a>'
comment1.mime_type = 'text/html'
self.assertEqual(comment1.getText(),
'Go to <a href="http://www.plone.org">plone.org</a>')
def test_getText_w_custom_targetMimetype(self):
comment1 = createObject('plone.Comment')
comment1.text = 'para'