summaryrefslogtreecommitdiff
path: root/src/beautifulsoup/builder/html5lib_builder.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2010-12-29 10:38:46 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2010-12-29 10:38:46 -0500
commit7ba9e49cada146978c1f02d9c28430fdcf56ab72 (patch)
tree77fd6a9d2ab9940569e21e0bcd6b29fed33b03ee /src/beautifulsoup/builder/html5lib_builder.py
parent017a21625f347665ad23da6dd109b9af29b4b443 (diff)
Refactored the code that turns HTML fragments into parser-specific documents for test purposes.
Diffstat (limited to 'src/beautifulsoup/builder/html5lib_builder.py')
-rw-r--r--src/beautifulsoup/builder/html5lib_builder.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/beautifulsoup/builder/html5lib_builder.py b/src/beautifulsoup/builder/html5lib_builder.py
index b4ef4de..80c3e6d 100644
--- a/src/beautifulsoup/builder/html5lib_builder.py
+++ b/src/beautifulsoup/builder/html5lib_builder.py
@@ -21,4 +21,7 @@ class HTML5TreeBuilder(SAXTreeBuilder, HTMLTreeBuilder):
walker = treewalkers.getTreeWalker('dom')
dom2sax(doc, self)
+ def test_fragment_to_document(self, fragment):
+ """See `TreeBuilder`."""
+ return u'<html><head></head><body>%s</body></html>' % fragment