RED: test converts 2 to II

This commit is contained in:
fiatcode 2026-02-10 08:10:32 +07:00
parent 0faa1de47c
commit a4e6689427

View file

@ -5,4 +5,8 @@ void main() {
test('converts 1 to I', () { test('converts 1 to I', () {
expect(roman_numerals.integerToRoman(1), 'I'); expect(roman_numerals.integerToRoman(1), 'I');
}); });
test('converts 2 to II', () {
expect(roman_numerals.integerToRoman(2), 'II');
});
} }