DESCRIPTION.rst 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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. mock is now part of the Python standard library, available as `unittest.mock
  5. <https://docs.python.org/dev/library/unittest.mock.html>`_ in Python 3.3
  6. onwards.
  7. This package contains a rolling backport of the standard library mock code
  8. compatible with Python 2.6 and up, and 3.3 and up.
  9. Please see the standard library documentation for more details.
  10. :Homepage: `Mock Homepage`_
  11. :Download: `Mock on PyPI`_
  12. :Documentation: `Python Docs`_
  13. :License: `BSD License`_
  14. :Support: `Mailing list (testing-in-python@lists.idyll.org)
  15. <http://lists.idyll.org/listinfo/testing-in-python>`_
  16. :Issue tracker: `Github Issues
  17. <https://github.com/testing-cabal/mock/issues>`_
  18. :Build status:
  19. .. image:: https://travis-ci.org/testing-cabal/mock.svg?branch=master
  20. :target: https://travis-ci.org/testing-cabal/mock
  21. .. _Mock Homepage: https://github.com/testing-cabal/mock
  22. .. _BSD License: http://github.com/testing-cabal/mock/blob/master/LICENSE.txt
  23. .. _Python Docs: https://docs.python.org/dev/library/unittest.mock.html
  24. .. _mock on PyPI: http://pypi.python.org/pypi/mock