Beispiel #1
0
 def test_return_one(self):
     assert roman_numerals(1) == 'I'
Beispiel #2
0
 def test_return_II_for_two(self):
     assert roman_numerals(2) == 'II'
Beispiel #3
0
 def test_return_VIII_for_eight(self):
     assert roman_numerals(8) == 'VIII'
Beispiel #4
0
 def test_return_IX_for_nine(self):
     assert roman_numerals(9) == 'IX'
Beispiel #5
0
 def test_return_VII_for_seven(self):
     assert roman_numerals(7) == 'VII'
Beispiel #6
0
 def test_return_VI_for_six(self):
     assert roman_numerals(6) == 'VI'
Beispiel #7
0
 def test_return_IV_for_four(self):
     assert roman_numerals(4) == 'IV'
Beispiel #8
0
 def test_return_V_for_five(self):
     assert roman_numerals(5) == 'V'
Beispiel #9
0
 def test_return_III_for_three(self):
     assert roman_numerals(3) == 'III'