def test_words_that_cant_be_matched_by_tiles(self): t = Twords() expect(t.match("spies", "eips")) == False
def test_words_can_be_matched_by_tiles(self): t = Twords() expect(t.match("pies", "eips")) == True