Beispiel #1
0
 def test_iter_text_default_charset_iso_8859_1(self):
     content_type = ContentType("text", "strange")
     text = _u("bytes\xea")
     iso_version = text.encode("ISO-8859-1")
     content = Content(content_type, lambda: [iso_version])
     self.assertEqual([text], list(content.iter_text()))
 def test_iter_text_default_charset_iso_8859_1(self):
     content_type = ContentType("text", "strange")
     text = _u("bytes\xea")
     iso_version = text.encode("ISO-8859-1")
     content = Content(content_type, lambda: [iso_version])
     self.assertEqual([text], list(content.iter_text()))
Beispiel #3
0
 def test_iter_text_decodes(self):
     content_type = ContentType("text", "strange", {"charset": "utf8"})
     content = Content(content_type, lambda: [_u("bytes\xea").encode("utf8")])
     self.assertEqual([_u("bytes\xea")], list(content.iter_text()))
 def test_iter_text_decodes(self):
     content_type = ContentType("text", "strange", {"charset": "utf8"})
     content = Content(content_type,
                       lambda: [_u("bytes\xea").encode("utf8")])
     self.assertEqual([_u("bytes\xea")], list(content.iter_text()))