Metadata-Version: 1.1
Name: backports.unittest-mock
Version: 1.1.1
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: 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.
        
        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.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
