Commit f812e794 authored by Andreas Jung's avatar Andreas Jung

extended some tests using content_type = text/xml

that will raise an exception (undetected so far)
parent b035ec17
...@@ -197,12 +197,14 @@ class ZopePageTemplateFileTests(ZopeTestCase): ...@@ -197,12 +197,14 @@ class ZopePageTemplateFileTests(ZopeTestCase):
zpt = self._put(xml_iso_8859_15) zpt = self._put(xml_iso_8859_15)
self.assertEqual(zpt.output_encoding, 'utf-8') self.assertEqual(zpt.output_encoding, 'utf-8')
self.assertEqual(zpt.content_type, 'text/xml') self.assertEqual(zpt.content_type, 'text/xml')
result = zpt.pt_render() # should not raise an exception
def testPutXMLUTF8(self): def testPutXMLUTF8(self):
""" XML: use always UTF-8 als output encoding """ """ XML: use always UTF-8 als output encoding """
zpt = self._put(xml_utf8) zpt = self._put(xml_utf8)
self.assertEqual(zpt.output_encoding, 'utf-8') self.assertEqual(zpt.output_encoding, 'utf-8')
self.assertEqual(zpt.content_type, 'text/xml') self.assertEqual(zpt.content_type, 'text/xml')
result = zpt.pt_render() # should not raise an exception
class ZPTRegressions(unittest.TestCase): class ZPTRegressions(unittest.TestCase):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment