1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import sys
def html_it():
"""Run coverage and make an HTML report for unicode.py."""
import coverage
cov = coverage.coverage()
cov.start()
import unicode
cov.stop()
cov.html_report(unicode, directory="../html_unicode")
runfunc(html_it, rundir="src")
# HTML files will change often. Check that the sizes are reasonable,
# and check that certain key strings are in the output.
compare("gold_unicode", "html_unicode", size_within=10, file_pattern="*.html")
contains("html_unicode/unicode.html",
"<span class='str'>"ʎd˙ǝbɐɹǝʌoɔ"</span>",
)
if sys.maxunicode == 65535:
contains("html_unicode/unicode.html",
"<span class='str'>"db40,dd00: x��"</span>",
)
else:
contains("html_unicode/unicode.html",
"<span class='str'>"db40,dd00: x󠄀"</span>",
)
clean("html_unicode")
|