Merge pull request #1625 from Scimonster/master

Fix #1624 -- Unicode in XML sanitizing causes error
This commit is contained in:
mdipierro
2017-06-05 11:39:52 -05:00
committed by GitHub
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -170,6 +170,8 @@ class TestBareHelpers(unittest.TestCase):
# seams that __repr__ is no longer enough
##self.assertEqual(XML('1.3'), '1.3')
self.assertEqual(XML(u'<div>è</div>').xml(), b'<div>\xc3\xa8</div>')
# make sure unicode works with sanitize
self.assertEqual(XML(u'<div>è</div>', sanitize=True).xml(), b'<div>\xc3\xa8</div>')
# you can calc len on the class, that equals the xml() and the str()
##self.assertEqual(len(XML('1.3')), len('1.3'))
self.assertEqual(len(XML('1.3').xml()), len('1.3'))