Beispiel #1
0
def test_to_roman_with_string():
    with pytest.raises(RomanNumeralsError):
        to_roman("Hello")
Beispiel #2
0
def test_to_roman_with_float():
    with pytest.raises(RomanNumeralsError):
        to_roman(0.5)
Beispiel #3
0
def test_to_roman_with_zero():
    with pytest.raises(RomanNumeralsError):
        to_roman(0)
Beispiel #4
0
def test_to_roman_to_large():
    with pytest.raises(RomanNumeralsError):
        to_roman(5000)
Beispiel #5
0
def test_to_roman():
    for arabic, roman in ARABIC_TO_ROMAN:
        assert to_roman(arabic) == roman