Exemplo n.º 1
0
def test_two():
    result = arabicToRoman(2)
    assert result == "II"
Exemplo n.º 2
0
def test_13():
    result = arabicToRoman(486)
    assert result == "CDLXXXVI"
Exemplo n.º 3
0
def test_14():
    result = arabicToRoman(857)
    assert result == "DCCCLVII"
Exemplo n.º 4
0
def test_11():
    result = arabicToRoman(123)
    assert result == "CXXIII"
Exemplo n.º 5
0
def test_12():
    result = arabicToRoman(999)
    assert result == "CMXCIX"
Exemplo n.º 6
0
def test_nine():
    result = arabicToRoman(9)
    assert result == "IX"
Exemplo n.º 7
0
def test_ten():
    result = arabicToRoman(10)
    assert result == "X"
Exemplo n.º 8
0
def test_seven():
    result = arabicToRoman(7)
    assert result == "VII"
Exemplo n.º 9
0
def test_eight():
    result = arabicToRoman(8)
    assert result == "VIII"
Exemplo n.º 10
0
def test_one():
    result = arabicToRoman(1)
    assert result == "I"
Exemplo n.º 11
0
def test_six():
    result = arabicToRoman(6)
    assert result == "VI"
Exemplo n.º 12
0
def test_five():
    result = arabicToRoman(5)
    assert result == "V"
Exemplo n.º 13
0
def test_four():
    result = arabicToRoman(4)
    assert result == "IV"
Exemplo n.º 14
0
def test_three():
    result = arabicToRoman(3)
    assert result == "III"