method: test.compat.TestCase.assert_

*Not documented*
def assert_(self, x):

origin: test.compat.TestCase

where:

function source:

def assert_(self, x):
    __tracebackhide__ = True
    if not x:
        raise py.test.Item.Failed(msg='not %s' % (x))