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