Skip to content

Commit

Permalink
Add testcase for Korean ordinal
Browse files Browse the repository at this point in the history
  • Loading branch information
dogzz9445 committed Jan 8, 2024
1 parent 9807d4a commit abbb90b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_ko.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def test_currency(self):
def test_ordinal(self):
cases = [(1, "한"), (101, "백한"), (2, "두"), (5, "다섯"), (1050, "천쉰"),
(10, "열"), (20, "스무"), (21, "스물한"), (100, "백"), (1000, "천"),
(10000, "만"), (100000, "십만"), (1000000, "백만"),
(10000, "만"), (100000, "십만"), (1000000, "백만"), (100001, "십만 한"),
(10000000, "천만"), (100000000, "일억"), (1000000000, "십억"),
(10000000000, "백억"), (100000000000, "천억"),
(1000000000000, "일조"), (10000000000000, "십조"),
Expand Down

0 comments on commit abbb90b

Please sign in to comment.