def test_compare_small(self):
     testarray = ["one", "two"]
     ret_bool = askfunc.shouldCompare(testarray)
     self.assertTrue(ret_bool == True)
 def test_compare_edge(self):
     testarray = ["one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten"]
     ret_bool = askfunc.shouldCompare(testarray)
     self.assertTrue(ret_bool == False)