def test_error(): """ you should get an TypeError if you try to add something other than numbers """ try: print cy_add_c.add('this', 5) assert False # shouldn't get here! except TypeError: # should have gotten an exception pass
def test_2(): assert cy_add_c.add(5, 6) == 11
def test_1(): assert cy_add_c.add(3, 4) == 7