|
| 1 | +Metadata-Version: 2.1 |
| 2 | +Name: mock |
| 3 | +Version: 5.1.0 |
| 4 | +Summary: Rolling backport of unittest.mock for all Pythons |
| 5 | +Home-page: http://mock.readthedocs.org/en/latest/ |
| 6 | +Author: Testing Cabal |
| 7 | + |
| 8 | +Project-URL: Source, https://github.com/testing-cabal/mock |
| 9 | +Classifier: Development Status :: 5 - Production/Stable |
| 10 | +Classifier: Environment :: Console |
| 11 | +Classifier: Intended Audience :: Developers |
| 12 | +Classifier: License :: OSI Approved :: BSD License |
| 13 | +Classifier: Operating System :: OS Independent |
| 14 | +Classifier: Programming Language :: Python |
| 15 | +Classifier: Programming Language :: Python :: 3.6 |
| 16 | +Classifier: Programming Language :: Python :: 3.7 |
| 17 | +Classifier: Programming Language :: Python :: 3.8 |
| 18 | +Classifier: Programming Language :: Python :: 3.9 |
| 19 | +Classifier: Programming Language :: Python :: 3.10 |
| 20 | +Classifier: Programming Language :: Python :: 3.11 |
| 21 | +Classifier: Programming Language :: Python :: Implementation :: CPython |
| 22 | +Classifier: Programming Language :: Python :: Implementation :: PyPy |
| 23 | +Classifier: Topic :: Software Development :: Libraries |
| 24 | +Classifier: Topic :: Software Development :: Libraries :: Python Modules |
| 25 | +Classifier: Topic :: Software Development :: Testing |
| 26 | +Requires-Python: >=3.6 |
| 27 | +License-File: LICENSE.txt |
| 28 | +Provides-Extra: build |
| 29 | +Requires-Dist: twine ; extra == 'build' |
| 30 | +Requires-Dist: wheel ; extra == 'build' |
| 31 | +Requires-Dist: blurb ; extra == 'build' |
| 32 | +Provides-Extra: docs |
| 33 | +Requires-Dist: sphinx ; extra == 'docs' |
| 34 | +Provides-Extra: test |
| 35 | +Requires-Dist: pytest ; extra == 'test' |
| 36 | +Requires-Dist: pytest-cov ; extra == 'test' |
| 37 | + |
| 38 | +mock is a library for testing in Python. It allows you to replace parts of |
| 39 | +your system under test with mock objects and make assertions about how they |
| 40 | +have been used. |
| 41 | + |
| 42 | +mock is now part of the Python standard library, available as `unittest.mock |
| 43 | +<https://docs.python.org/dev/library/unittest.mock.html>`_ in Python 3.3 |
| 44 | +onwards. |
| 45 | + |
| 46 | +This package contains a rolling backport of the standard library mock code |
| 47 | +compatible with Python 3.6 and up. |
| 48 | + |
| 49 | +Please see the standard library documentation for more details. |
| 50 | + |
| 51 | +:Homepage: `Mock Homepage`_ |
| 52 | +:Download: `Mock on PyPI`_ |
| 53 | +:Documentation: `Python Docs`_ |
| 54 | +:License: `BSD License`_ |
| 55 | +:Support: `Mailing list ( [email protected]) |
| 56 | + <http://lists.idyll.org/listinfo/testing-in-python>`_ |
| 57 | +:Code: `GitHub |
| 58 | + <https://github.com/testing-cabal/mock>`_ |
| 59 | +:Issue tracker: `GitHub Issues |
| 60 | + <https://github.com/testing-cabal/mock/issues>`_ |
| 61 | +:Build status: |
| 62 | + |CircleCI|_ |Docs|_ |
| 63 | + |
| 64 | + .. |CircleCI| image:: https://circleci.com/gh/testing-cabal/mock/tree/master.svg?style=shield |
| 65 | + .. _CircleCI: https://circleci.com/gh/testing-cabal/mock/tree/master |
| 66 | + |
| 67 | + .. |Docs| image:: https://readthedocs.org/projects/mock/badge/?version=latest |
| 68 | + .. _Docs: http://mock.readthedocs.org/en/latest/ |
| 69 | + |
| 70 | +.. _Mock Homepage: http://mock.readthedocs.org/en/latest/ |
| 71 | +.. _BSD License: https://github.com/testing-cabal/mock/blob/master/LICENSE.txt |
| 72 | +.. _Python Docs: https://docs.python.org/dev/library/unittest.mock.html |
| 73 | +.. _mock on PyPI: https://pypi.org/project/mock/ |
0 commit comments