summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/backunittest.py12
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`."""