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 dac37fb commit be816faCopy full SHA for be816fa
tests/t40_html.py
@@ -21,3 +21,13 @@ def test_3(self):
21
output = 'a &#ZZ &#; &#'
22
common.request('html..')
23
common.validate(input, output)
24
+ # Multiple encoding levels should be decodable. Bug #66.
25
+ def test_4(self):
26
+ input = '(Parenthetical)'
27
+ intermediate1 = '(Parenthetical)'
28
+ intermediate2 = '(Parenthetical)'
29
+ output = '(Parenthetical)'
30
+ common.request('html..')
31
+ common.validate(input, intermediate1)
32
+ common.validate(intermediate1, intermediate2)
33
+ common.validate(intermediate2, output)
0 commit comments