Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
.testr.conf | 22-Oct-2020 | 145 | |
.travis.yml | 22-Oct-2020 | 532 | |
docs/ | 22-Oct-2020 | ||
extendmock.py | 22-Oct-2020 | 34 | |
LICENSE.txt | 22-Oct-2020 | 1.3K | |
METADATA | 22-Oct-2020 | 475 | |
mock/ | 22-Oct-2020 | ||
mock.wpr | 22-Oct-2020 | 1.2K | |
MODULE_LICENSE_BSD | 22-Oct-2020 | 0 | |
NEWS | 22-Oct-2020 | 3K | |
NOTICE | 22-Oct-2020 | 1.3K | |
OWNERS | 22-Oct-2020 | 210 | |
README.rst | 22-Oct-2020 | 1.2K | |
requirements.txt | 22-Oct-2020 | 217 | |
setup.cfg | 22-Oct-2020 | 1.3K | |
setup.py | 22-Oct-2020 | 126 | |
tools/ | 22-Oct-2020 | ||
tox.ini | 22-Oct-2020 | 408 | |
unittest.cfg | 22-Oct-2020 | 1.7K |
1 mock is a library for testing in Python. It allows you to replace parts of 2 your system under test with mock objects and make assertions about how they 3 have been used. 4 5 mock 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 7 onwards. 8 9 This package contains a rolling backport of the standard library mock code 10 compatible with Python 2.7 and 3.3 and up. 11 12 Please 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 (a] 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