Beispiel #1
0
 def test_pre_syllabify4(self):
     word = Word("melopea")
     assert word.pre_syllabify() == "-me-lo-pe-a"
Beispiel #2
0
 def test_pre_syllabify2(self):
     """Diphthongs still omited """
     word = Word("áureo")
     assert word.pre_syllabify() == "-á-u-re-o"
Beispiel #3
0
 def test_pre_syllabify3(self):
     word = Word("muerte")
     assert word.pre_syllabify() == "-mu-er-te"
Beispiel #4
0
 def test_pre_syllabify1(self):
     """Hiatus with 'h' inbetween vowels"""
     word = Word("ahínco")
     assert word.pre_syllabify() == "-a-hín-co"