Ejemplo n.º 1
0
 def test_simple_word(self):
     self.assertEqual(yiddish_to_roman("שול"), "shul")
Ejemplo 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)
Ejemplo n.º 3
0
 def test_exceptional_word_2(self):
     self.assertEqual(yiddish_to_roman("ייִדיש"), "yiddish")
Ejemplo n.º 4
0
 def test_exceptional_word(self):
     self.assertEqual(yiddish_to_roman("אויף"), "af")
Ejemplo n.º 5
0
 def test_simple_word_3(self):
     self.assertEqual(yiddish_to_roman("שטײט"), "shteyt")
Ejemplo n.º 6
0
 def test_simple_word_2(self):
     self.assertEqual(yiddish_to_roman("װוּרשט"), "vursht")