def test_add_list(): assert add([1], [2]) == [1, 2] raise Exception()
def test_add_num(): assert add(1, 2) == 3
def test_add_str(): assert add("a", "b") == "ab"