forked from orbit-oss/flask
Use assert_false where appropriate
This commit is contained in:
parent
9f8a2075c7
commit
62e7275bdf
5 changed files with 15 additions and 12 deletions
|
|
@ -145,6 +145,9 @@ class FlaskTestCase(unittest.TestCase):
|
|||
def assert_true(self, x, msg=None):
|
||||
self.assertTrue(x, msg)
|
||||
|
||||
def assert_false(self, x, msg=None):
|
||||
self.assertFalse(x, msg)
|
||||
|
||||
def assert_in(self, x, y):
|
||||
self.assertIn(x, y)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue