def checkScramble(word): scrambles = scramble.scramble(word) # (s1,s2) for tat in scrambles: if checkwords.is_words(tat): print "%s -> %s" % (word,tat)
def testboomboom(self): self.assertEquals(checkwords.is_words("boomboom"),True)