Ask Your Question
0

Is it possible to set a new_callable for each patch in patch.multiple?

asked 2022-09-14 11:00:00 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-01-14 17:00:00 +0000

djk gravatar image

Yes, it is possible to set a newcallable for each patch in patch.multiple. You can pass a list of tuples, where each tuple contains the target object, the attribute to patch, the new value or the patch function, and an optional newcallable for that specific patch. Here's an example:

from unittest.mock import patch

class MyClass:
    def my_method(self):
        return "original value"

def my_mock():
    return "mocked value"

def my_new_callable(original_method):
    def my_patch(*args, **kwargs):
        return "patched value"
    return my_patch

with patch.multiple(MyClass, 
                    ("my_method", my_mock, my_new_callable),
                    ("my_other_method", "new value")):
    obj = MyClass()
    assert obj.my_method() == "mocked value"
    assert obj.my_other_method == "new value"

In this example, we're using patch.multiple to patch two different attributes of MyClass: mymethod and myothermethod. For mymethod, we're using a mock function (mymock) and a newcallable function (mynewcallable). The new_callable will be used to create a new patch function that will replace the original method.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-09-14 11:00:00 +0000

Seen: 11 times

Last updated: Jan 14 '23