我正在使用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_fun1
和with patch.object()
中模拟Mock()
,不起作用,有什么建议吗?谢谢!