summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2012-02-01 14:33:19 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2012-02-01 14:33:19 -0500
commit8d5da528e14cc00278e8c6b57128ea92ae682f89 (patch)
treeb7098361d64c7fca9084d20c77be6dca9858a4d5
parent3a5c0800bcffbcefc61ee17d9ba2d93b4c51f141 (diff)
Removed test that we can't really test anymore.
-rw-r--r--bs4/tests/test_builder_registry.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bs4/tests/test_builder_registry.py b/bs4/tests/test_builder_registry.py
index 860639d..4a60bc1 100644
--- a/bs4/tests/test_builder_registry.py
+++ b/bs4/tests/test_builder_registry.py
@@ -51,10 +51,6 @@ class BuiltInRegistryTest(unittest.TestCase):
self.assertEqual(registry.lookup('html.parser'),
HTMLParserTreeBuilder)
- def test_unimplemented_combinations(self):
- self.assertEqual(registry.lookup('fast', 'permissive', 'html'),
- None)
-
def test_beautifulsoup_constructor_does_lookup(self):
# You can pass in a string.
BeautifulSoup("", features="html")