A subclass of MagicMock that copies the arguments
Project description
MagicMock has problems when used on a function with mutable arguments. This is called out in the documentation:
Another situation is rare, but can bite you, is when your mock is called with mutable arguments. call_args and call_args_list store references to the arguments. If the arguments are mutated by the code under test then you can no longer make assertions about what the values were when the mock was called.
They then go on to propose a workaround, using side_effect, but it’s not very likable. There is also an elegant recipe offered which copies arguments at call-time. It’s simply a subclass of MagicMock which copies the arguments, instead of storing references. I’m not sure why the recipe wasn’t included directly in mock, so here it is as a third-party package.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for copyingmock-0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8496586ab6f91af8d751ffd28c34a8b7ebe8058c4113d74d6521c6d35ec311f |
|
MD5 | 497a0aaeb057481e16d6fae6ea281932 |
|
BLAKE2b-256 | 5e8e3b2f4e29f918759216f1d6c3b42e8b128f3b01d492046bcf45eb4b907e17 |