RED: test convert 7 to VII

This commit is contained in:
fiatcode 2026-02-10 08:43:57 +07:00
parent 445ba862ee
commit 44845ed71b

View file

@ -25,4 +25,8 @@ void main() {
test('converts 6 to VI', () {
expect(roman_numerals.integerToRoman(6), 'VI');
});
test('converts 7 to VII', () {
expect(roman_numerals.integerToRoman(7), 'VII');
});
}