diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2011-02-18 08:54:29 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2011-02-18 08:54:29 -0500 |
commit | e68c4b03f72760ff698b41378d70819725dfdcbe (patch) | |
tree | 11a8a17d29d83c23f0b7af27300cce74821cb142 /tests/test_lxml.py | |
parent | 2208a31babdd6ec331bde1ae82b83b35553cb0ce (diff) |
Removed partially ported test that's now completely ported.
Diffstat (limited to 'tests/test_lxml.py')
-rw-r--r-- | tests/test_lxml.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_lxml.py b/tests/test_lxml.py index e32872e..20adc77 100644 --- a/tests/test_lxml.py +++ b/tests/test_lxml.py @@ -304,14 +304,6 @@ class TestLXMLBuilder(SoupTest): str = soup.p.string #self.assertEquals(str.encode("utf-8"), expected) - def test_foo(self): - isolatin = """<html><meta http-equiv="Content-type" content="text/html; charset=ISO-Latin-1" />Sacr\xe9 bleu!</html>""" - soup = self.soup(isolatin) - - utf8 = isolatin.replace("ISO-Latin-1".encode(), "utf-8".encode()) - utf8 = utf8.replace("\xe9", "\xc3\xa9") - #print soup - class TestLXMLBuilderInvalidMarkup(SoupTest): """Tests of invalid markup for the LXML tree builder. |