From d6d7ab96f9d5f92c59d439eb7e26e0155441e063 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 9 Nov 2009 08:08:46 -0500 Subject: Start to document branch coverage --- doc/branch.rst | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 doc/branch.rst (limited to 'doc/branch.rst') 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? -- cgit v1.2.1