Skip to content

Commit

Permalink
Sync roman-numeral tests (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
BNAndras authored Apr 17, 2024
1 parent bcb8137 commit 99afaf9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions exercises/practice/roman-numerals/.meta/tests.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,8 @@ description = "3000 is MMM"
[3bc4b41c-c2e6-49d9-9142-420691504336]
description = "3001 is MMMI"

[2f89cad7-73f6-4d1b-857b-0ef531f68b7e]
description = "3888 is MMMDCCCLXXXVIII"

[4e18e96b-5fbb-43df-a91b-9cb511fe0856]
description = "3999 is MMMCMXCIX"
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,8 @@
(deftest 3001-is-MMMI
(is-equal "MMMI" (roman-numerals:roman 3001)))

(deftest 3888-is-MMMDCCCLXXXVIII
(is-equal "MMMDCCCLXXXVIII" (roman-numerals:roman 3888)))

(deftest 3999-is-MMMCMXCIX
(is-equal "MMMCMXCIX" (roman-numerals:roman 3999)))

0 comments on commit 99afaf9

Please sign in to comment.