Ejemplo n.º 1
0
def test_input_MDCCLXXVI_output_1776():
    assert roman_to_int("MDCCLXXVI") == 1776
Ejemplo n.º 2
0
def test_input_IX_output_9():
    assert roman_to_int("IX") == 9
Ejemplo n.º 3
0
def test_input_XCIV_output_94():
    assert roman_to_int("XCIV") == 94
Ejemplo n.º 4
0
def test_input_XLII_output_42():
    assert roman_to_int("XLII") == 42
Ejemplo n.º 5
0
def test_input_XV_output_15():
    assert roman_to_int("XV") == 15
Ejemplo n.º 6
0
def test_input_V_output_five():
    assert roman_to_int("V") == 5
Ejemplo n.º 7
0
def test_input_I_output_one():
    assert roman_to_int("I") == 1
Ejemplo n.º 8
0
def test_roman_to_int_with_data(test_input, expected):
    assert roman_to_int(test_input) == expected