summaryrefslogtreecommitdiff
path: root/test/farm/html/run_tabbed.py
blob: 88ffcaefc69db0a1f27f5e2615859d73a35d70a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
def html_it():
    """Run coverage and make an HTML report for tabbed."""
    import coverage
    cov = coverage.coverage()
    cov.start()
    import tabbed
    cov.stop()
    cov.html_report(tabbed, directory="../html")

runfunc(html_it, rundir="src")

# Editors like to change things, make sure our source file still has tabs.
contains("src/tabbed.py", "\tif x:\t\t\t\t\t\t# look nice")

contains("html/tabbed.html",
    ">&nbsp; &nbsp; <span class='key'>if</span> <span class='nam'>x</span>"
    "<span class='op'>:</span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;"
    " &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; <span class='com'># look nice</span>"
    )

doesnt_contain("html/tabbed.html", "\t")
clean("html")