From 53ba0940b632b6f65efdcb046f0c496caddfbcd7 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 20 Oct 2013 08:47:35 -0400 Subject: No need for these test method replacements. --HG-- branch : 4.0 --- tests/backunittest.py | 12 ------------ 1 file changed, 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`.""" -- cgit v1.2.1