Skip to content

Commit

Permalink
Cambios en el test de los alumnos para comprobar operaciones con ceros
Browse files Browse the repository at this point in the history
  • Loading branch information
dcsibon committed Nov 11, 2024
1 parent e894a80 commit dfadb04
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_calculadora_alumnos.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import pytest

from src.calculadora_alumnos import es_resultado_negativo, multiplicar, dividir, potencia
from daw1b_calculadora.ezequiel_calculadora_alumnos import es_resultado_negativo, multiplicar, dividir, potencia


# TODO: Crear el test unitario para la función es_resultado_negativo. Verifica lo siguiente:
Expand All @@ -10,6 +10,10 @@


def test_es_resultado_negativo():
#assert es_resultado_negativo(-5, 0) is False
#assert es_resultado_negativo(0, -7) is False
assert es_resultado_negativo(0, 0) is False

# Casos donde el resultado debe ser negativo
assert es_resultado_negativo(-5, 3) is True
assert es_resultado_negativo(4, -7) is True
Expand Down

0 comments on commit dfadb04

Please sign in to comment.