(self)
| 956 | pass |
| 957 | |
| 958 | def test_normalize(self): |
| 959 | # Assert normalization of simple diacritics (WordNet does not store diacritics). |
| 960 | self.assertEqual(en.wordnet.normalize(u"cliché"), "cliche") |
| 961 | self.assertEqual(en.wordnet.normalize(u"façade"), "facade") |
| 962 | print "pattern.en.wordnet.normalize()" |
| 963 | |
| 964 | def test_version(self): |
| 965 | print "WordNet " + en.wordnet.VERSION |