معرفی شرکت ها


copyingmock-0.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A subclass of MagicMock that copies the arguments
ویژگی مقدار
سیستم عامل -
نام فایل copyingmock-0.2
نام copyingmock
نسخه کتابخانه 0.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Wim Glenn
ایمیل نویسنده hey@wimglenn.com
آدرس صفحه اصلی https://github.com/wimglenn/copyingmock
آدرس اینترنتی https://pypi.org/project/copyingmock/
مجوز MIT
Copying Mock ============ |travis|_ |coveralls|_ |pypi|_ |pyversions|_ |womm|_ .. |travis| image:: https://img.shields.io/travis/wimglenn/copyingmock.svg?branch=master .. _travis: https://travis-ci.org/wimglenn/copyingmock .. |coveralls| image:: https://img.shields.io/coveralls/wimglenn/copyingmock.svg .. _coveralls: https://coveralls.io/github/wimglenn/copyingmock?branch=master .. |pypi| image:: https://img.shields.io/pypi/v/copyingmock.svg .. _pypi: https://pypi.python.org/pypi/copyingmock .. |pyversions| image:: https://img.shields.io/pypi/pyversions/copyingmock.svg .. _pyversions: .. |womm| image:: https://cdn.rawgit.com/nikku/works-on-my-machine/v0.2.0/badge.svg .. _womm: https://github.com/nikku/works-on-my-machine ``MagicMock`` has problems when used on a function with mutable arguments. This is called out in the `documentation <https://docs.python.org/3/library/unittest.mock-examples.html#coping-with-mutable-arguments>`_: 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.


نیازمندی

مقدار نام
ython_versio mock;


نحوه نصب


نصب پکیج whl copyingmock-0.2:

    pip install copyingmock-0.2.whl


نصب پکیج tar.gz copyingmock-0.2:

    pip install copyingmock-0.2.tar.gz