unittest: Add `assertFalse` to `TestCase`

pull/16/head
nvbn 2014-12-15 02:37:45 +03:00 zatwierdzone przez Paul Sokolovsky
rodzic e1f42dcd91
commit c7a9f63686
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -35,6 +35,9 @@ class TestCase:
return
raise
def assertFalse(self, x, msg=''):
assert not x, msg
def skip(msg):
def _decor(fun):