diff options
author | Leonard Richardson <leonardr@segfault.org> | 2014-12-11 22:23:26 -0500 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2014-12-11 22:23:26 -0500 |
commit | 5bd09164de9b5a45ffea4171968b8186dcdc6f69 (patch) | |
tree | 0784b1c3e6ef5a803d9323e056d14bbbc07ebc06 /bs4/testing.py | |
parent | 3c133d8d12f314ff3d70195cc0422e8e087b7829 (diff) |
Improved the lxml tree builder's handling of processing
instructions. [bug=1294645]
Diffstat (limited to 'bs4/testing.py')
-rw-r--r-- | bs4/testing.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bs4/testing.py b/bs4/testing.py index 3e700f3..023a495 100644 --- a/bs4/testing.py +++ b/bs4/testing.py @@ -114,6 +114,11 @@ class HTMLTreeBuilderSmokeTest(object): soup.encode("utf-8").replace(b"\n", b""), markup.replace(b"\n", b"")) + def test_processing_instruction(self): + markup = b"""<?PITarget PIContent?>""" + soup = self.soup(markup) + self.assertEqual(markup, soup.encode("utf8")) + def test_deepcopy(self): """Make sure you can copy the tree builder. |