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