summaryrefslogtreecommitdiff
path: root/tests/farm/html/src/partial.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/farm/html/src/partial.py')
-rw-r--r--tests/farm/html/src/partial.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/farm/html/src/partial.py b/tests/farm/html/src/partial.py
deleted file mode 100644
index ea97ec4f..00000000
--- a/tests/farm/html/src/partial.py
+++ /dev/null
@@ -1,24 +0,0 @@
-# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
-# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
-
-# partial branches and excluded lines
-
-a = 6
-
-while True:
- break
-
-while 1:
- break
-
-while a: # pragma: no branch
- break
-
-if 0:
- never_happen()
-
-if 1:
- a = 21
-
-if a == 23:
- raise AssertionError("Can't")