如何在HTTP请求中模拟函数?

时间:2019-12-18 06:39:23

标签: python mocking pytest

我正在使用pytest,我有一个类似的测试:

def test_fun1(client):
    rsp = client.get(url)

在我的烧瓶服务器中的此get URL中,它们是函数fun2()

# restful api
def get():
    res1 = fun2()
    # do thing on res1
    return res2

我想在我的pytest fun2()test_fun1with patch.object()中模拟Mock(),不起作用,有什么建议吗?谢谢!

0 个答案:

没有答案