summaryrefslogtreecommitdiff
path: root/tests/test_tree.py
AgeCommit message (Collapse)Author
2011-02-27Renamed the beautifulsoup module to bs4 to save typing.Leonard Richardson
2011-02-26The attribute list comes in as a dictionary, so stop turning it into a list ↵Leonard Richardson
for no reason. Saves code and a little time. Sort outgoing attributes so that the tests will run consistently.
2011-02-26Renamed replace_with_html_entities to substitute_html_entities.Leonard Richardson
2011-02-26First stab at HTML entity replacement.Leonard Richardson
2011-02-20Renamed the registry variable to builder_registry.Leonard Richardson
2011-02-20Started using the builder registry.Leonard Richardson
2011-02-20Renamed constructor arguments to comply with PEP 8.Leonard Richardson
2011-02-20Discovered that html5lib can't be made to support SoupStrainers, and changed ↵Leonard Richardson
the test suite appropriately.
2011-02-20Removed extraneous newlines.Leonard Richardson
2011-02-20Since we can't parse in CData objects ATM, added a test for CData objects ↵Leonard Richardson
created manually, to keep the bits from rotting.
2011-02-20Added a test showing weird behavior when you .insert contents into an ↵Leonard Richardson
empty-element tag.
2011-02-20Refactored some empty-element tests and added more.Leonard Richardson
2011-02-19Set up an lxml parser that only parses XML, though it's not very functional yet.Leonard Richardson
2011-02-18Ported the encoding tests, and split them up into logical chunks. The ↵Leonard Richardson
html5lib writer isn't setting up the charset substitution.
2011-02-18Fixed test failures that were masked by the compatibility methods.Leonard Richardson
2011-02-18Did a bunch more renames--they're listed in the CHANGELOG.Leonard Richardson
2011-02-18Renamed findAllPrevious to find_all_previous.Leonard Richardson
2011-02-18Renamed findAllNext to find_all_next.Leonard Richardson
2011-02-18Renamed findNext to find_next.Leonard Richardson
2011-02-18Renamed findAll to find_all.Leonard Richardson
2011-02-10Ported some more tests demonstrating that entities are converted to Unicode ↵Leonard Richardson
characters on the way in.
2011-02-10Fixed the ability to encode strings.Leonard Richardson
2011-01-28Ported the persistence tests.Leonard Richardson
2011-01-28Made .string a dynamic property.Leonard Richardson