Metadata-Version: 1.1
Name: testpath
Version: 0.1
Summary: Test utilities for code working with files and commands
Home-page: https://github.com/takluyver/testpath
Author: Thomas Kluyver
Author-email: thomas@kluyver.me.uk
License: UNKNOWN
Description: Testpath is a collection of utilities for Python code working with files and commands.
        
        It contains functions to check things on the filesystem, and tools for mocking
        system commands and recording calls to those.
        
        `Documentation on ReadTheDocs <http://testpath.readthedocs.org/en/latest/>`_
        
        e.g.::
        
            import testpath
            testpath.assert_isfile(path)
            
            with testpath.assert_calls('git', ['add', path]):
                function_under_test()
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Testing
