예제 #1
0
	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)
예제 #2
0
	def test_testName(self):
		color.blue("test here baby")
		result = assertMy.objToStr(("hello\nhello2", "world"))
		expected = """("hello
hello2", "world")"""
		assertMy.equals(result, expected)