Metadata-Version: 2.1
Name: internet-sabotage2
Version: 0.1.3
Summary: Disable network connection for Testing
Home-page: https://github.com/dvl/python-internet-sabotage
Author: André Luiz
Author-email: contato@xdvl.info
License: MIT
Description: Internet Sabotage
        =================
        
        Python package to simulate internet failures for testing purposes.
        
        This fork fix error in original repository.
        
        Installation
        ------------
        
        .. code:: shell
        
            $ pip install internet-sabotage2
        
        Usage
        -----
        
        .. code:: python
        
            from internet_sabotage import no_connection
        
            with no_connection():
                response = requests.get('http://httpbin.org/ip')
        
        or
        
        .. code:: python
        
            from internet_sabotage import no_connection
        
            @no_connection
            def test_something():
                pass
        
        License
        -------
        
        MIT
        
Keywords: internet disable unittest
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Testing
Description-Content-Type: text/x-rst
