Example #1
0
def test_retorna_X():
	assert romanos(10) == 'X'
Example #2
0
def test_retorna_XI():
	assert romanos(11) == 'XI'
Example #3
0
def test_retorna_VIII():
	assert romanos(8) == 'VIII'
Example #4
0
def test_retorna_IX():
	assert romanos(9) == 'IX'
Example #5
0
def test_retorna_VI():
	assert romanos(6) == 'VI' 
Example #6
0
def test_retorna_V():
	assert romanos(5) == 'V' 
Example #7
0
def test_retorna_IV():
	assert romanos(4) == 'IV'
Example #8
0
def test_retorna_III():
	assert romanos(3) == 'III'
Example #9
0
def test_retorna_I():
	assert romanos(1) == 'I'