def test_modulus(operator, operands, value): """It should be able to mod.""" assert handler.execute(operator, operands) == value
def test_divide(operator, operands, value): """It should be able to divide.""" assert handler.execute(operator, operands) == value
def test_subtract(operator, operands, value): """It should be able to subtract.""" assert handler.execute(operator, operands) == value
def test_multiply(operator, operands, value): """It should be able to multiply.""" assert handler.execute(operator, operands) == value
def test_add(operator, operands, value): """It should be able to add.""" assert handler.execute(operator, operands) == value