summaryrefslogtreecommitdiff
path: root/roman_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'roman_test.go')
-rw-r--r--roman_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/roman_test.go b/roman_test.go
index 218c38e..4ad62cf 100644
--- a/roman_test.go
+++ b/roman_test.go
@@ -11,6 +11,7 @@ func TestRoman(t *testing.T) {
}{
{0, ""},
{1, "I"},
+ {2, "II"},
{3, "III"},
{5, "V"},
{8, "VIII"},
@@ -19,6 +20,9 @@ func TestRoman(t *testing.T) {
{34, "XXXIV"},
{55, "LV"},
{89, "LXXXIX"},
+ {100, "C"},
+ {200, "CC"},
+ {500, "D"},
{1e3 - 1, "CMXCIX"},
{2e3 - 1, "MCMXCIX"},
{4e3 - 1, "MMMCMXCIX"},