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
commitd6d7ab96f9d5f92c59d439eb7e26e0155441e063 (patch)
tree817595b85728ce52973245abf356dc58f54cfb7e /doc/branch.rst
parent6dbe5d8a1042f3a55d904a077e6b077ac0b5716b (diff)
downloadpython-coveragepy-git-d6d7ab96f9d5f92c59d439eb7e26e0155441e063.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 00000000..5419d1c1
--- /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?