diff options
Diffstat (limited to 'test/farm/html/run_unicode.py')
-rw-r--r-- | test/farm/html/run_unicode.py | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/test/farm/html/run_unicode.py b/test/farm/html/run_unicode.py deleted file mode 100644 index cef26ee5..00000000 --- a/test/farm/html/run_unicode.py +++ /dev/null @@ -1,30 +0,0 @@ -import sys - -def html_it(): - """Run coverage and make an HTML report for unicode.py.""" - import coverage - cov = coverage.coverage() - cov.start() - import unicode # pragma: nested - cov.stop() # pragma: nested - 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") |