Metadata-Version: 1.2
Name: mockito
Version: 1.5.0
Summary: Spying framework
Home-page: https://github.com/kaste/mockito-python
Maintainer: herr.kaste
Maintainer-email: herr.kaste@gmail.com
License: MIT
Description: Mockito is a spying framework originally based on `the Java library with the same name
        <https://github.com/mockito/mockito>`_.  (Actually *we* invented the strict stubbing mode
        back in 2009.)  
        
        .. image:: https://github.com/kaste/mockito-python/actions/workflows/test-lint-go.yml/badge.svg
            :target: https://github.com/kaste/mockito-python/actions/workflows/test-lint-go.yml
        
        
        Install
        =======
        
        ``pip install mockito``
        
        
        
        Quick Start
        ===========
        
        90% use case is that you want to stub out a side effect.
        
        ::
        
            from mockito import when, mock, unstub
        
            when(os.path).exists('/foo').thenReturn(True)
        
            # or:
            import requests  # the famous library
            # you actually want to return a Response-like obj, we'll fake it
            response = mock({'status_code': 200, 'text': 'Ok'})
            when(requests).get(...).thenReturn(response)
        
            # use it
            requests.get('http://google.com/')
        
            # clean up
            unstub()
        
        
        
        
        Read the docs
        =============
        
        http://mockito-python.readthedocs.io/en/latest/
        
        
        
        Development
        ===========
        
        I use `rye <https://rye-up.com/>`_, and if you do too: you just clone this repo
        to your computer, then run ``rye sync`` in the root directory.  Finally, activate
        the virtualenv.  (``rye shell`` gives you a hint on how to do that.)
        
        ::
        
            pytest
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Testing
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.7
