Ejemplo n.º 1
0
	def test_we_convert_hundreds_and_ten_to_text(self):
		self.assertEqual(numerals.number_to_txt(111), "mea veehadesre")
Ejemplo n.º 2
0
	def test_we_convert_hundreds_to_text(self):
		self.assertEqual(numerals.number_to_txt(121), "mea esrim veehad")
Ejemplo n.º 3
0
	def test_we_convert_hundreds_precise_to_text(self):
		self.assertEqual(numerals.number_to_txt(100), "mea")
Ejemplo n.º 4
0
	def test_we_convert_twenties_to_text(self):
		self.assertEqual(numerals.number_to_txt(22), "esrim veshtaim")
Ejemplo n.º 5
0
	def test_we_convert_tens_to_text(self):
		self.assertEqual(numerals.number_to_txt(11), "ehadesre")
Ejemplo n.º 6
0
	def test_we_convert_tens_precise_to_text(self):
		self.assertEqual(numerals.number_to_txt(10), "eser")
Ejemplo n.º 7
0
	def test_we_convert_units_to_text(self):
		self.assertEqual(numerals.number_to_txt(1), "ehad")