summaryrefslogtreecommitdiff
path: root/bs4/testing.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2013-05-20 09:19:16 -0400
committerLeonard Richardson <leonardr@segfault.org>2013-05-20 09:19:16 -0400
commitdae9722244850754533647c77f418f626ba05124 (patch)
tree4b0c5b4f5a508e433911bd3c7cb628417ba32b31 /bs4/testing.py
parent202d6407adc5ce81e461b9a85e5930b53f717901 (diff)
Fixed test failures when lxml is not installed.
Diffstat (limited to 'bs4/testing.py')
-rw-r--r--bs4/testing.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/bs4/testing.py b/bs4/testing.py
index ed71d3b..383f36a 100644
--- a/bs4/testing.py
+++ b/bs4/testing.py
@@ -464,6 +464,18 @@ class XMLTreeBuilderSmokeTest(object):
self.assertEqual(
soup.encode("utf-8"), markup)
+ def test_formatter_processes_script_tag_for_xml_documents(self):
+ doc = """
+ <script type="text/javascript">
+ </script>
+"""
+ soup = BeautifulSoup(doc, "xml")
+ # lxml would have stripped this while parsing, but we can add
+ # it later.
+ soup.script.string = 'console.log("< < hey > > ");'
+ encoded = soup.encode()
+ self.assertTrue(b"&lt; &lt; hey &gt; &gt;" in encoded)
+
def test_popping_namespaced_tag(self):
markup = '<rss xmlns:dc="foo"><dc:creator>b</dc:creator><dc:date>2012-07-02T20:33:42Z</dc:date><dc:rights>c</dc:rights><image>d</image></rss>'
soup = self.soup(markup)