Exemplo n.º 1
0
def test_other(monkeypatch):
    def mocked_remote_compute(x):
        print(f"other mocked received {x}")
        if x == 6:
            return 36
        if x == 8:
            return 64

    monkeypatch.setattr(mymath.externalapi, 'remote_compute',
                        mocked_remote_compute)
    assert mymath.compute(6, 8) == 10
    ...
Exemplo n.º 2
0
def test_compute_breaks():
    assert mymath.compute(3, 4) == 5
Exemplo n.º 3
0
import mymath

print(mymath.compute(3, 4))
Exemplo n.º 4
0
def test_other():
    res = mymath.compute(2, 7)
    ...
Exemplo n.º 5
0
def test_compute():
    assert mymath.compute(3, 4) == 5
Exemplo n.º 6
0
def test_compute(monkeypatch):
    monkeypatch.setattr(mymath.externalapi, 'remote_compute',
                        mocked_remote_compute)
    assert mymath.compute(3, 4) == 5
    ...