Skip to content

Commit

Permalink
Add test to improve coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Marlon Rodriguez Garcia committed Nov 19, 2024
1 parent 8c712e9 commit c10ce52
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion num2words/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def to_cardinal(self, value):
value = abs(value)
out = "%s " % self.negword.strip()

if value >= self.MAXVAL:
if hasattr(self, 'MAXVAL') and value >= self.MAXVAL:
raise OverflowError(self.errmsg_toobig % (value, self.MAXVAL))

val = self.splitnum(value)
Expand Down
13 changes: 13 additions & 0 deletions tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,16 @@ def test_is_title(self):
self.base.title("one"),
"one"
)

def test_set_high_numwords_not_implemented(self):
with self.assertRaises(NotImplementedError):
self.base.set_high_numwords()

def test_to_ordinal(self):
from num2words.base import Num2Word_Base
self.base = Num2Word_Base()
self.assertEqual(self.base.to_ordinal(1), "1st")
self.assertEqual(self.base.to_ordinal(11), "11th")
self.assertEqual(self.base.to_ordinal(21), "21st")
self.assertEqual(self.base.to_ordinal(100), "100th")
self.assertEqual(self.base.to_ordinal(123), "123rd")

0 comments on commit c10ce52

Please sign in to comment.