def to_roman(n):
'''converts integers/arabic numerals to Roman numerals'''
if not (0<n<4000):
raise OutOfRangeError('number out of range (must be between 1-3999)')
result = ''
for numeral, integer in roman_numerals:
while n >= integer:
result += numeral
n -= integer
return result
import pytest
from my_roman_module import to_roman
def test_not_in_range():
'''to_roman should fail with large input'''
with pytest.raises(OutOfRangeError):
to_roman(4000)