mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 06:42:25 +00:00
More tests
This commit is contained in:
@@ -22,7 +22,7 @@ from .lang_EU import Num2Word_EU
|
||||
|
||||
class Num2Word_NL(Num2Word_EU):
|
||||
CURRENCY_FORMS = {
|
||||
'EUR': (('euro', 'euro'), ('cent', 'cents')),
|
||||
'EUR': (('euro', 'euros'), ('cent', 'cents')),
|
||||
}
|
||||
|
||||
GIGA_SUFFIX = "iljard"
|
||||
@@ -119,7 +119,7 @@ class Num2Word_NL(Num2Word_EU):
|
||||
val = cnum + nnum
|
||||
|
||||
word = ctext + ntext
|
||||
return (word, val)
|
||||
return word, val
|
||||
|
||||
def to_ordinal(self, value):
|
||||
self.verify_ordinal(value)
|
||||
|
||||
Reference in New Issue
Block a user