def test_testName(self): color.blue("test here baby") obj = ("hello\n world", ['org', 'ok']) result = assertMy.objToStr(obj) expected = """("hello world", ["org", "ok"])""" assertMy.equals(result, expected)
def test_testName(self): color.blue("test here baby") result = assertMy.objToStr(("hello\nhello2", "world")) expected = """("hello hello2", "world")""" assertMy.equals(result, expected)