Metadata-Version: 1.2
Name: backports.unittest-mock
Version: 1.3
Summary: backports.unittest_mock
Home-page: https://github.com/jaraco/backports.unittest_mock
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: .. image:: https://img.shields.io/pypi/v/backports.unittest_mock.svg
           :target: https://pypi.org/project/backports.unittest_mock
        
        .. image:: https://img.shields.io/pypi/pyversions/backports.unittest_mock.svg
        
        .. image:: https://img.shields.io/pypi/dm/backports.unittest_mock.svg
        
        .. image:: https://img.shields.io/travis/jaraco/backports.unittest_mock/master.svg
           :target: http://travis-ci.org/jaraco/backports.unittest_mock
        
        Provides a function "install()" which makes the "mock" module
        available as "unittest.mock" on Python 3.2 and earlier.
        
        Also advertises a pytest plugin which configures unittest.mock
        automatically.
        
        
        License
        =======
        
        License is indicated in the project metadata (typically one or more
        of the Trove classifiers). For more details, see `this explanation
        <https://github.com/jaraco/skeleton/issues/1>`_.
        
        Usage
        =====
        
        If using pytest, simply require this package in your test environment,
        and `unittest.mock` will be available.
        
        Otherwise, it must be invoked imperatively::
        
            import backports.unittest_mock
            backports.unittest_mock.install()
        
            import unittest.mock
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Python: >=2.6
