Exemplo n.º 1
0
 def test_15_num(self):
     self.assertEqual(gematriapy.to_hebrew(15), "טו")
Exemplo n.º 2
0
 def test_too_big(self):
     with self.assertRaises(Exception):
         gematriapy.to_hebrew(1000)
Exemplo n.º 3
0
 def test_simple_num(self):
     self.assertEqual(gematriapy.to_hebrew(3), "ג")
Exemplo n.º 4
0
 def test_zero(self):
     with self.assertRaises(Exception):
         gematriapy.to_hebrew(0)
Exemplo n.º 5
0
 def test_negative(self):
     with self.assertRaises(Exception):
         gematriapy.to_hebrew(-1)
Exemplo n.º 6
0
 def test_bigger_than_800_num(self):
     self.assertEqual(gematriapy.to_hebrew(822), "תתכב")
Exemplo n.º 7
0
 def test_hundreds_num_that_ends_with_16(self):
     self.assertEqual(gematriapy.to_hebrew(516), "תקטז")
Exemplo n.º 8
0
 def test_random_hundreds_num_v2(self):
     self.assertEqual(gematriapy.to_hebrew(499), "תצט")
Exemplo n.º 9
0
 def test_random_hundreds_num_v1(self):
     self.assertEqual(gematriapy.to_hebrew(250), "רנ")
Exemplo n.º 10
0
 def test_random_tens_num_v2(self):
     self.assertEqual(gematriapy.to_hebrew(77), "עז")
Exemplo n.º 11
0
 def test_random_tens_num_v1(self):
     self.assertEqual(gematriapy.to_hebrew(24), "כד")
Exemplo n.º 12
0
 def test_16_num(self):
     self.assertEqual(gematriapy.to_hebrew(16), "טז")