From 397483b981b7fe84d4f43dcb5c01268c3bf81602 Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Fri, 18 Feb 2011 10:30:50 -0500 Subject: Added failing encoding conversion tests for html5lib. --- tests/test_html5lib.py | 9 +++++++++ tests/test_lxml.py | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/tests/test_html5lib.py b/tests/test_html5lib.py index 3efdebf..1034720 100644 --- a/tests/test_html5lib.py +++ b/tests/test_html5lib.py @@ -3,6 +3,7 @@ from beautifulsoup.element import Comment from test_lxml import ( TestLXMLBuilder, TestLXMLBuilderInvalidMarkup, + TestLXMLBuilderEncodingConversion, ) class TestHTML5Builder(TestLXMLBuilder): @@ -138,3 +139,11 @@ class TestHTML5BuilderInvalidMarkup(TestLXMLBuilderInvalidMarkup): utf8 = utf8.replace("\xe9", "\xc3\xa9") #print soup + + +class TestHTML5LibEncodingConversion(TestLXMLBuilderEncodingConversion): + @property + def default_builder(self): + return HTML5TreeBuilder() + + pass diff --git a/tests/test_lxml.py b/tests/test_lxml.py index 0f54e78..1218763 100644 --- a/tests/test_lxml.py +++ b/tests/test_lxml.py @@ -383,10 +383,10 @@ class TestLXMLBuilderEncodingConversion(SoupTest): def setUp(self): super(TestLXMLBuilderEncodingConversion, self).setUp() - self.unicode_data = u"\xe9" + self.unicode_data = u"\xe9" self.utf8_data = self.unicode_data.encode("utf-8") self.assertEqual( - self.utf8_data, "\xc3\xa9") + self.utf8_data, "\xc3\xa9") def test_ascii_in_unicode_out(self): # ASCII input is converted to Unicode. The originalEncoding -- cgit v1.2.3