コード例 #1
0
	def test_compare_small(self) :
		testarray = ['one','two']
		ret_bool = ask.shouldCompare(testarray)
		self.assertTrue(ret_bool == True)
コード例 #2
0
	def test_compare_edge(self) :
		testarray = ['one','two','three','four','five','six','seven','eight','nine','ten']
		ret_bool = ask.shouldCompare(testarray)
		self.assertTrue(ret_bool == False)