mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 06:42:25 +00:00
#454: [tr] fix negative number problem
This commit is contained in:
@@ -186,7 +186,11 @@ class Num2WordsTRTest(TestCase):
|
||||
{"test": 10, "to": "ordinal_num", "expected": u"10uncu"},
|
||||
{"test": 1, "to": "ordinal_num", "expected": u"1inci"},
|
||||
{"test": 3, "to": "ordinal_num", "expected": u"3üncü"},
|
||||
{"test": 6, "to": "ordinal_num", "expected": u"6ıncı"}
|
||||
{"test": 6, "to": "ordinal_num", "expected": u"6ıncı"},
|
||||
{"test": -5, "to": "cardinal", "expected": u"eksibeş"},
|
||||
{"test": -55, "to": "cardinal", "expected": u"eksiellibeş"},
|
||||
{"test": -576, "to": "cardinal", "expected": u"eksibeşyüzyetmişaltı"},
|
||||
{"test": -3, "to": "currency", "expected": u"eksiüçlira"},
|
||||
]
|
||||
|
||||
for casedata in testcases:
|
||||
|
||||
Reference in New Issue
Block a user