summaryrefslogtreecommitdiff
path: root/test/backunittest.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-12-26 15:27:49 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-12-26 15:27:49 -0500
commitc3b8f57d2cd96801052fc0d0f56401aaa8d4f063 (patch)
tree2d113ec8e15177ffa880ec718946aa29f83b8e94 /test/backunittest.py
parent04076715a642d0caa6436e81d35416e711b80d52 (diff)
downloadpython-coveragepy-git-c3b8f57d2cd96801052fc0d0f56401aaa8d4f063.tar.gz
Mark some lines as uncoverable, add some tests for some test methods.
Diffstat (limited to 'test/backunittest.py')
-rw-r--r--test/backunittest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/backunittest.py b/test/backunittest.py
index 33f552db..3e521e5a 100644
--- a/test/backunittest.py
+++ b/test/backunittest.py
@@ -42,7 +42,7 @@ class TestCase(unittest.TestCase):
if re.search(regexp, excMsg):
# Message provided, and we got the right one: it passes.
return
- else: # pragma: no cover
+ else:
# Message provided, and it didn't match: fail!
raise self.failureException(
"Right exception, wrong message: "
@@ -50,7 +50,7 @@ class TestCase(unittest.TestCase):
)
# No need to catch other exceptions: They'll fail the test all by
# themselves!
- else: # pragma: no cover
+ else:
if hasattr(excClass, '__name__'):
excName = excClass.__name__
else: