• Home
Name Date Size #Lines LOC

..--

docs/03-May-2024-406178

mock/03-May-2024-8,1215,942

tools/03-May-2024-7636

.gitignoreD03-May-2024172 2120

.testr.confD03-May-2024145 54

.travis.ymlD03-May-2024532 2724

LICENSE.txtD03-May-20241.3 KiB2722

METADATAD03-May-2024475 2018

MODULE_LICENSE_BSDD03-May-20240

NEWSD03-May-20243 KiB8053

NOTICED03-May-20241.3 KiB2722

OWNERSD03-May-2024210 54

README.rstD03-May-20241.2 KiB3024

extendmock.pyD03-May-202434 20

mock.wprD03-May-20241.2 KiB2721

requirements.txtD03-May-2024217 76

setup.cfgD03-May-20241.3 KiB4238

setup.pyD03-May-2024126 74

tox.iniD03-May-2024408 2218

unittest.cfgD03-May-20241.7 KiB9676

README.rst

1mock is a library for testing in Python. It allows you to replace parts of
2your system under test with mock objects and make assertions about how they
3have been used.
4
5mock is now part of the Python standard library, available as `unittest.mock
6<https://docs.python.org/dev/library/unittest.mock.html>`_ in Python 3.3
7onwards.
8
9This package contains a rolling backport of the standard library mock code
10compatible with Python 2.7 and 3.3 and up.
11
12Please see the standard library documentation for more details.
13
14:Homepage: `Mock Homepage`_
15:Download: `Mock on PyPI`_
16:Documentation: `Python Docs`_
17:License: `BSD License`_
18:Support: `Mailing list (testing-in-python@lists.idyll.org)
19 <http://lists.idyll.org/listinfo/testing-in-python>`_
20:Issue tracker: `GitHub Issues
21 <https://github.com/testing-cabal/mock/issues>`_
22:Build status:
23  .. image:: https://travis-ci.org/testing-cabal/mock.svg?branch=master
24      :target: https://travis-ci.org/testing-cabal/mock
25
26.. _Mock Homepage: https://github.com/testing-cabal/mock
27.. _BSD License: http://github.com/testing-cabal/mock/blob/master/LICENSE.txt
28.. _Python Docs: https://docs.python.org/dev/library/unittest.mock.html
29.. _mock on PyPI: http://pypi.python.org/pypi/mock
30