Metadata-Version: 1.0
Name: drippy
Version: 0.3.1
Summary: Nose plugin for finding tempfile leaks
Home-page: https://launchpad.net/drippy
Author: Tres Seaver, Agendaless Consulting
Author-email: tseaver@agendaless.com
License: Python
Description: ``drippy`` README
        =================
        
        This package provides a plugin for `nose <http://pypi.python.org/pypi/nose>`_
        which reports tempfile leaks during test runs.
        
        For example::
        
          $ /path/to/nosetests --with-drippy
          .......................
             test_some_feature (yourpackage.tests.FeatureTests) -- before: 0, after: 1
          
            Featuretests -- before: 0, after: 1
          ...........
           yourpackage.tests -- before: 0, after 1
        
          yourpackage -- before: 0, after: 1
          
          ----------------------------------------------------------------------
          Ran 34 tests in 0.243s
        
        
        ``drippy`` Changelog
        ====================
        
        0.3.1 (2014-03-31)
        ------------------
        
        - Change URL in 'setup()' to Launchpad.
        
        0.3 (2014-03-04)
        ----------------
        
        - Un-hardcode use of '/tmp' by using 'tempfile.gettempdir()'.
        
        - Allow for testing on systems w/o 'setuptools_bzr'.
        
        0.2 (2014-03-03)
        ----------------
        
        - Add coverage testing.
        
        - Add support / tests for Python 2.6, 2.7, 3.2, 3.3, and PyPy.
        
        - Specify ``nose`` as ain ``install_requires`` dependency.
        
        - Fix packaging error (``drippy.py`` was present in sdist, but not
          installable.  Merges lp:~msabramo/drippy/setup_py_py_modules
        
        0.1 (2010-05-12)
        ----------------
        
        - Initial release.
        
Keywords: nose tempfile leak
Platform: Unix
Platform: Windows
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Testing
