summaryrefslogtreecommitdiff
path: root/bs4/tests/test_htmlparser.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2012-02-21 08:20:24 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2012-02-21 08:20:24 -0500
commitfc625b23c7e17b55aee18c8d449c14c13702b937 (patch)
tree314f62b9cfafd4aedfaecc89f3500812d65672a6 /bs4/tests/test_htmlparser.py
parentab5cfcead94a0c99d0f325883960097ef223fca6 (diff)
Removed unused test data.
Diffstat (limited to 'bs4/tests/test_htmlparser.py')
-rw-r--r--bs4/tests/test_htmlparser.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/bs4/tests/test_htmlparser.py b/bs4/tests/test_htmlparser.py
index d5b6ae1..b6af528 100644
--- a/bs4/tests/test_htmlparser.py
+++ b/bs4/tests/test_htmlparser.py
@@ -128,8 +128,6 @@ class TestHTMLParserTreeBuilder(SoupTest):
# parse tree and that the rest of the document parsed.
self.assertEqual(soup.p.contents[0], 'foo')
-# -------------------------
-
def test_mixed_case_tags(self):
# Mixed-case tags are folded to lowercase.
self.assertSoupEquals(
@@ -168,15 +166,6 @@ class TestHTMLParserTreeBuilder(SoupTest):
self.assertEqual(blockquote.p.b.string, 'Foo')
self.assertEqual(blockquote.b.string, 'Foo')
- # This is a <table> tag containing another <table> tag in one of its
- # cells.
- TABLE_MARKUP_1 = ('<table id="1">'
- '<tr>'
- "<td>Here's another table:"
- '<table id="2">'
- '<tr><td>foo</td></tr>'
- '</table></td>')
-
def test_correctly_nested_tables(self):
markup = ('<table id="1">'
'<tr>'