unittest.mock — mock object library — Python 3.10.2 documentation

PHOTO EMBED

Sun Jan 30 2022 10:17:45 GMT+0000 (Coordinated Universal Time)

Saved by @arielvol

>>> @patch.object(SomeClass, 'class_method')
... def test(mock_method):
...     SomeClass.class_method(3)
...     mock_method.assert_called_with(3)
...
>>> test()
content_copyCOPY

https://docs.python.org/3/library/unittest.mock.html#