diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-10-20 08:47:35 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-10-20 08:47:35 -0400 |
commit | 53ba0940b632b6f65efdcb046f0c496caddfbcd7 (patch) | |
tree | 649662d32b54693a7849ffb721fe005c28fda332 | |
parent | 6dfbb755d1f6994ccec9ae56ad7f2eedad2ed0d6 (diff) | |
download | python-coveragepy-git-53ba0940b632b6f65efdcb046f0c496caddfbcd7.tar.gz |
No need for these test method replacements.
--HG--
branch : 4.0
-rw-r--r-- | tests/backunittest.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/backunittest.py b/tests/backunittest.py index 16414014..0964ab1d 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`.""" |