• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.circleci/23-Nov-2023-119105

docs/23-Nov-2023-394160

mock/23-Nov-2023-9,1216,642

.carthorse.ymlD23-Nov-2023230 109

.coveragercD23-Nov-2023191 1512

.gitignoreD23-Nov-2023151 1817

.readthedocs.ymlD23-Nov-2023118 98

Android.bpD23-Nov-2023991 3229

CHANGELOG.rstD23-Nov-20237.7 KiB207140

LICENSE.txtD23-Nov-20231.3 KiB2722

MANIFEST.inD23-Nov-202334 32

METADATAD23-Nov-2023475 2018

MODULE_LICENSE_BSDD23-Nov-20230

NOTICED23-Nov-20231.3 KiB2722

OWNERSD23-Nov-2023210 54

README.rstD23-Nov-20231.4 KiB3729

backport.pyD23-Nov-20234.2 KiB148103

lastsync.txtD23-Nov-202341 21

release.pyD23-Nov-20232.2 KiB9364

setup.cfgD23-Nov-20231.5 KiB5651

setup.pyD23-Nov-2023242 118

tox.iniD23-Nov-2023196 1310

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.4 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:Code: `GitHub
21 <https://github.com/testing-cabal/mock>`_
22:Issue tracker: `GitHub Issues
23 <https://github.com/testing-cabal/mock/issues>`_
24:Build status:
25    |CircleCI|_ |Docs|_
26
27    .. |CircleCI| image:: https://circleci.com/gh/testing-cabal/mock/tree/master.svg?style=shield
28    .. _CircleCI: https://circleci.com/gh/testing-cabal/mock/tree/master
29
30    .. |Docs| image:: https://readthedocs.org/projects/mock/badge/?version=latest
31    .. _Docs: http://mock.readthedocs.org/en/latest/
32
33.. _Mock Homepage: http://mock.readthedocs.org/en/latest/
34.. _BSD License: https://github.com/testing-cabal/mock/blob/master/LICENSE.txt
35.. _Python Docs: https://docs.python.org/dev/library/unittest.mock.html
36.. _mock on PyPI: https://pypi.org/project/mock/
37