我正在尝试模拟我使用 mocker.patch.object 创建的另一种方法。但是我得到了 AttributeError。使用 mocker 的新手,但还没有看到可以帮助解决这种情况的示例。

尝试了从 mocker 调用该方法的不同方式。

在测试/test_unit.py

from pytest_mock import mocker

class TestApp:

 def setup_method(self):
        self.obj = ClassApi()

 def test_class_api_method(self, client):

        return_value = {'name': 'test'}
        mocker.patch.object(self.obj, 'method_to_mock')
        mocker.result(return_value)

在项目/服务中
class ClassApi:

       def method_to_mock(self, input1):
         ...
        return result

AttributeError: 'function' 对象没有属性 'patch'

最佳答案

我对 Pytest-Mock 不是很熟悉,但基于对文档的查看,您应该使用 mocker 作为夹具。所以你的函数应该是这样的:

 def test_class_api_method(self, client, mocker):

        return_value = {'name': 'test'}
        mocker.patch.object(self.obj, 'method_to_mock')
        mocker.result(return_value)

pytest 在运行时自动向测试函数提供参数模拟器,因此无需导入它。

关于python - Pytest mocker 补丁属性 :Error 'function' object has no attribute 'patch' ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56504222/

10-12 21:38