summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2013-10-20 08:47:35 -0400
committerNed Batchelder <ned@nedbatchelder.com>2013-10-20 08:47:35 -0400
commit723626e6b6fa61609f199bd3125ffa8829f4a114 (patch)
tree79f95151494e19ad46b31f73c844056cae560b4d
parentbe9682a29632257842384b0cecca6b9b6475216c (diff)
downloadpython-coveragepy-723626e6b6fa61609f199bd3125ffa8829f4a114.tar.gz
No need for these test method replacements.
-rw-r--r--tests/backunittest.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/backunittest.py b/tests/backunittest.py
index 1641401..0964ab1 100644
--- a/tests/backunittest.py
+++ b/tests/backunittest.py
@@ -15,18 +15,6 @@ class TestCase(unittest.TestCase):
the builtin `unittest` doesn't have them.
"""
- if _need('assertTrue'):
- def assertTrue(self, exp, msg=None):
- """Assert that `exp` is true."""
- if not exp:
- self.fail(msg)
-
- if _need('assertFalse'):
- def assertFalse(self, exp, msg=None):
- """Assert that `exp` is false."""
- if exp:
- self.fail(msg)
-
if _need('assertIn'):
def assertIn(self, member, container, msg=None):
"""Assert that `member` is in `container`."""