示例#1
0
def test_tablero_vacio_esta_vacio():
    tablero = tableroVacio()

    tablero1 = [
        [0, 0, 0, 0, 0, 0, 0],
        [0, 0, 0, 0, 0, 0, 0],
        [0, 0, 0, 0, 0, 0, 0],
        [0, 0, 0, 0, 0, 0, 0],
        [0, 0, 0, 0, 0, 0, 0],
        [0, 0, 0, 0, 0, 0, 0],
    ]

    assert tablero == tablero1
示例#2
0
def test_tablero_vacio_tiene_7_columnas():
    tablero = tableroVacio()

    assert len(tablero[0]) == 7
示例#3
0
def test_tablero_vacio_tiene_6_filas():
    tablero = tableroVacio()

    assert len(tablero) == 6  #chequea
示例#4
0
def test_tablero_vacio_esta_vacio():
    tablero = tableroVacio()
    for i in range(6):
        assert tablero[i] == [0, 0, 0, 0, 0, 0, 0]
示例#5
0
def test_tablero_vacio_tiene_6_filas_y_7_columnas():
	tablero = tableroVacio()

	assert len(tablero) == 6