We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de14b6c commit 994be0cCopy full SHA for 994be0c
tests/engines/test_engines_string_compat.py
@@ -20,6 +20,11 @@ def test_parse_html(self):
20
S.render(S.parse_html("<p><span>Test text</span></p>")),
21
"<p><span>Test text</span></p>",
22
)
23
+ # There for test coverage only.
24
+ self.assertEqual(
25
+ S.render_debug(S.parse_html("<p><span>Test text</span></p>")),
26
+ "<p><span>Test text</span></p>",
27
+ )
28
29
def test_append_child(self):
30
parent = S.create_tag("p")
@@ -81,3 +86,8 @@ def test_render_debug(self):
81
86
S.render_debug(S.create_tag("p", {"class": "intro"})),
82
87
'<p class="intro"></p>',
83
88
89
90
91
+ S.render_debug(S.create_tag("img", {"class": "intro"})),
92
+ '<img class="intro"/>',
93
0 commit comments