Metadata-Version: 1.0
Name: Mocki
Version: 1.7.3
Summary: An easy-to-use but full featured mocking library for Python.
Home-page: https://launchpad.net/mocki
Author: Olivier Kozak
Author-email: olivier.kozak@gmail.com
License: GNU LGPL v3
Description: 
        Mocki aims to be an easy-to-use but full featured mocking library for Python.
        
        Installation
        ------------
        
        Here is how to install Mocki using pip : ::
        
            pip install Mocki
        
        Starting with Mocki
        -------------------
        
        Here is how to instantiate a new mock with Mocki : ::
        
            >>> import mocki.core
            >>>
            >>> mock = mocki.core.Mock('myMock')
        
        There are basically two things we can do with this mock :
        
        * stub it to do a particular action on a particular call : ::
        
            >>> mock.on_call('myCall').do_return('myValue')
            >>>
            >>> mock('myCall')
            'myValue'
        
        * verify whether or not a particular call was invoked on it : ::
        
            >>> mock.verify_call('myCall').invoked_once()
            >>>
            >>> mock.verify_call('myCall').invoked_exactly(2)
            Traceback (most recent call last):
            ...
            AssertionError: Found one matching call invoked from myMock :
            > myMock('myCall')
        
        See the `documentation <http://mocki.readthedocs.org/en/latest/>`_ for more information on how to use Mocki.
        
Platform: UNKNOWN
