summaryrefslogtreecommitdiff
path: root/doc/branch.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-11-09 08:08:46 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-11-09 08:08:46 -0500
commit90d80149337a93010e6494122819fe4754f42ec5 (patch)
tree53233bc91e6bb5946ece4146b86632c97541ff2e /doc/branch.rst
parent65f82932eafe64f07fc89ee31b89480db15df367 (diff)
downloadpython-coveragepy-90d80149337a93010e6494122819fe4754f42ec5.tar.gz
Start to document branch coverage
Diffstat (limited to 'doc/branch.rst')
-rw-r--r--doc/branch.rst24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/branch.rst b/doc/branch.rst
new file mode 100644
index 0000000..5419d1c
--- /dev/null
+++ b/doc/branch.rst
@@ -0,0 +1,24 @@
+Coverage.py now supports branch coverage
+
+- How to use it.
+
+- Reporting
+
+- How it works
+
+- Odd cases
+
+ - yellow-pink syndrome:
+
+ Y if never_true:
+ P never_executed()
+
+ - while True is marked as yellow
+
+ - except ValueError will be marked as yellow if you never see a different exception.
+
+- Exceptions?
+
+ - What should we do with the info about unpredicted arcs?
+
+- Excluding. Does it work?