Exemplo n.º 1
0
 def test_word_with_hyphen(self):
     self.assertEqual(roman_to_yiddish("zoo-gortn"), "זאׇאׇ־גאׇרטן")
Exemplo n.º 2
0
 def do_round_trip_and_compare(self, word):
     yiddish = roman_to_yiddish(word)
     result = yiddish_to_roman(yiddish)
     self.assertEqual(result, word)
Exemplo n.º 3
0
 def test_word_with_melupm_vov(self):
     self.assertEqual(roman_to_yiddish("tuung"), "טוּונג")
Exemplo n.º 4
0
 def test_word_with_straightforward_vowels(self):
     self.assertEqual(roman_to_yiddish("golmeser"), "גאׇלמעסער")
Exemplo n.º 5
0
 def test_word_with_implied_vowels(self):
     self.assertEqual(roman_to_yiddish("khaverte"), "חבֿרטע")
Exemplo n.º 6
0
 def test_simple_two_word_phrase(self):
     self.assertEqual(roman_to_yiddish("dos broyt"), "דאׇס ברױט")
Exemplo n.º 7
0
 def test_simple_word(self):
     self.assertEqual(roman_to_yiddish("yiddish"), "ייִדיש")