method: test.compat.TestCase.assertEquals

*Not documented*
def assertEquals(self, x,y):

origin: test.compat.TestCase

where:

function source:

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