More tests

This commit is contained in:
Mārtiņš Šulcs
2018-09-18 12:10:47 +03:00
parent 03d44f4bc3
commit 26fef2e116
2 changed files with 20 additions and 2 deletions

View File

@@ -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)