mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 06:42:25 +00:00
* add Thai * change splitby3 to splitbyx * change lang_th to use function from currency * make Num2Word_TH inherit from Num2Word_Base * comment out test failed in 2.7 env * fix python2.7 error * add USD EUR for Thai * pep8 fix * added Thai
25 lines
996 B
Python
25 lines
996 B
Python
from unittest import TestCase
|
|
|
|
from num2words.utils import splitbyx
|
|
|
|
|
|
class TestUtils(TestCase):
|
|
def test_splitbyx(self):
|
|
self.assertEqual(list(splitbyx(str(12), 3)), [12])
|
|
self.assertEqual(list(splitbyx(str(1234), 3)), [1, 234])
|
|
self.assertEqual(list(splitbyx(str(12345678900), 3)),
|
|
[12, 345, 678, 900]
|
|
)
|
|
self.assertEqual(list(splitbyx(str(1000000), 6)), [1, 0])
|
|
|
|
self.assertEqual(list(splitbyx(str(12), 3, format_int=False)), ['12'])
|
|
self.assertEqual(list(splitbyx(str(1234), 3, format_int=False)),
|
|
['1', '234']
|
|
)
|
|
self.assertEqual(list(splitbyx(str(12345678900), 3, format_int=False)),
|
|
['12', '345', '678', '900']
|
|
)
|
|
self.assertEqual(list(splitbyx(str(1000000), 6, format_int=False)),
|
|
['1', '000000']
|
|
)
|