I always use `autospec=True` in when patching objects. I think this helps to uncover bad mock calls. Perhaps it would be nice to be able to set this as a default value. E.g.: ``` python def pytest_configure(mocker_config): mocker_config.default_autospec = True ```
I always use
autospec=Truein when patching objects. I think this helps to uncover bad mock calls.Perhaps it would be nice to be able to set this as a default value. E.g.: