Metadata-Version: 1.1
Name: internet-sabotage
Version: 0.1.1
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: # Usage
        
        from internet_sabotage import no_connection
        
        with no_connection():
            response = requests.get('http://httpbin.org/ip')
        
        
        or
        
        @no_connection
        def test_something():
            pass
        
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
