METADATA 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Metadata-Version: 2.0
  2. Name: mock
  3. Version: 2.0.0
  4. Summary: Rolling backport of unittest.mock for all Pythons
  5. Home-page: https://github.com/testing-cabal/mock
  6. Author: Testing Cabal
  7. Author-email: testing-in-python@lists.idyll.org
  8. License: UNKNOWN
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Environment :: Console
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: BSD License
  14. Classifier: Operating System :: OS Independent
  15. Classifier: Programming Language :: Python
  16. Classifier: Programming Language :: Python :: 2
  17. Classifier: Programming Language :: Python :: 2.6
  18. Classifier: Programming Language :: Python :: 2.7
  19. Classifier: Programming Language :: Python :: 3
  20. Classifier: Programming Language :: Python :: 3.2
  21. Classifier: Programming Language :: Python :: 3.3
  22. Classifier: Programming Language :: Python :: 3.4
  23. Classifier: Programming Language :: Python :: 3.5
  24. Classifier: Programming Language :: Python :: Implementation :: CPython
  25. Classifier: Programming Language :: Python :: Implementation :: Jython
  26. Classifier: Programming Language :: Python :: Implementation :: PyPy
  27. Classifier: Topic :: Software Development :: Libraries
  28. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  29. Classifier: Topic :: Software Development :: Testing
  30. Requires-Dist: pbr (>=0.11)
  31. Requires-Dist: six (>=1.9)
  32. Requires-Dist: funcsigs (>=1); (python_version<"3.3")
  33. Provides-Extra: docs
  34. Requires-Dist: sphinx; (python_version<"3" or python_version>="3.3") and extra == 'docs'
  35. Provides-Extra: docs
  36. Requires-Dist: Pygments (<2); (python_version<"3.3" and python_version>="3") and extra == 'docs'
  37. Requires-Dist: jinja2 (<2.7); (python_version<"3.3" and python_version>="3") and extra == 'docs'
  38. Requires-Dist: sphinx (<1.3); (python_version<"3.3" and python_version>="3") and extra == 'docs'
  39. Provides-Extra: test
  40. Requires-Dist: unittest2 (>=1.1.0); extra == 'test'
  41. mock is a library for testing in Python. It allows you to replace parts of
  42. your system under test with mock objects and make assertions about how they
  43. have been used.
  44. mock is now part of the Python standard library, available as `unittest.mock
  45. <https://docs.python.org/dev/library/unittest.mock.html>`_ in Python 3.3
  46. onwards.
  47. This package contains a rolling backport of the standard library mock code
  48. compatible with Python 2.6 and up, and 3.3 and up.
  49. Please see the standard library documentation for more details.
  50. :Homepage: `Mock Homepage`_
  51. :Download: `Mock on PyPI`_
  52. :Documentation: `Python Docs`_
  53. :License: `BSD License`_
  54. :Support: `Mailing list (testing-in-python@lists.idyll.org)
  55. <http://lists.idyll.org/listinfo/testing-in-python>`_
  56. :Issue tracker: `Github Issues
  57. <https://github.com/testing-cabal/mock/issues>`_
  58. :Build status:
  59. .. image:: https://travis-ci.org/testing-cabal/mock.svg?branch=master
  60. :target: https://travis-ci.org/testing-cabal/mock
  61. .. _Mock Homepage: https://github.com/testing-cabal/mock
  62. .. _BSD License: http://github.com/testing-cabal/mock/blob/master/LICENSE.txt
  63. .. _Python Docs: https://docs.python.org/dev/library/unittest.mock.html
  64. .. _mock on PyPI: http://pypi.python.org/pypi/mock