Skip to content

Commit

Permalink
Add more unit-test of Ordinal for confirmation
Browse files Browse the repository at this point in the history
  • Loading branch information
sapk authored and dustin committed Mar 16, 2022
1 parent 249ff6c commit 8c89973
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ordinals_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ func TestOrdinals(t *testing.T) {
{"11", Ordinal(11), "11th"},
{"12", Ordinal(12), "12th"},
{"13", Ordinal(13), "13th"},
{"21", Ordinal(21), "21st"},
{"32", Ordinal(32), "32nd"},
{"43", Ordinal(43), "43rd"},
{"101", Ordinal(101), "101st"},
{"102", Ordinal(102), "102nd"},
{"103", Ordinal(103), "103rd"},
Expand Down

0 comments on commit 8c89973

Please sign in to comment.