我很想为python编写单元测试用例并需要一些帮助。
我有一个基于Flask的应用程序,它在内部通过REST调用另一个URL
示例代码
@sample.route('/testing', methods=["GET"])
def testing():
resp = requests.get("some url")
data = resp.json()
resp1 = requests.post("another url", data)
return resp1.status_code()
现在,对于单元测试,我的其他模块还没有,我需要为这个模块编写单元测试用例。 所以我需要模拟这些休息请求并返回每个请求的自定义数据和状态代码。
任何人都可以请求如何处理此事。 我尝试了各种在线链接,但没有按照我的期望工作。