Moved BeautifulSoup bs4 directory to headphones parent directory

I guess the bs4 directory should be under lib but I couldn't get the
import to work from here
This commit is contained in:
Ade
2012-08-24 11:24:35 +12:00
parent 4f74e217a1
commit 7aac60cecd
16 changed files with 0 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
"""Tests to ensure that the html.parser tree builder generates good
trees."""
from bs4.testing import SoupTest, HTMLTreeBuilderSmokeTest
from bs4.builder import HTMLParserTreeBuilder
class HTMLParserTreeBuilderSmokeTest(SoupTest, HTMLTreeBuilderSmokeTest):
@property
def default_builder(self):
return HTMLParserTreeBuilder()
def test_namespaced_system_doctype(self):
# html.parser can't handle namespaced doctypes, so skip this one.
pass
def test_namespaced_public_doctype(self):
# html.parser can't handle namespaced doctypes, so skip this one.
pass