summaryrefslogtreecommitdiff
path: root/tests/farm/html/src/y.py
blob: a5f5fc70f13372cdb0fb5d8bc1548dc4b777725d (plain)
1
2
3
4
5
6
7
8
9
# A test file for XML reporting by coverage.py.

def choice(x):
    if x < 2:
        return 3
    else:
        return 4

assert choice(1) == 3