Metadata-Version: 1.1
Name: unittest2six
Version: 0.0.0
Summary: Meta-package for unittest2 functionality on both Python 2 and Python 3
Home-page: https://github.com/msabramo/unittest2six
Author: Marc Abramowitz
Author-email: marc@marc-abramowitz.com
License: MIT
Description: 
        unittest2six
        ============
        
        .. image:: https://secure.travis-ci.org/msabramo/unittest2six.png
           :target: http://travis-ci.org/msabramo/unittest2six
        
        Simple meta package to easily get unittest2_ functionality in both Python 2 and
        Python 3.
        
        This provides stuff that was added to unittest in the Python 2.7 stdlib and
        backported to Python 2.6 with unittest2_. e.g.:
        
        - ``assertIn``/``assertNotIn``
        - ``assertIsInstance``/``assertNotIsInstance``
        - ``assertRaises`` as a context manager
        -  etc...
        
        On Python 2, this imports unittest2_. On Python 3, this imports unittest2py3k_.
        
        This is handy to have one dependency that you can use on both Python 2 and
        Python 3 and not have to have separate pip requirements files and tox targets.
        
        
        Compatibility
        -------------
        
        Results from Tox_::
        
            $ make test
            ...
            [TOX] py25: commands succeeded
            [TOX] py26: commands succeeded
            [TOX] py27: commands succeeded
            [TOX] py30: commands succeeded
            [TOX] py31: commands succeeded
            [TOX] py32: commands succeeded
            [TOX] congratulations :)
            ...
              py26: commands succeeded
              py27: commands succeeded
              py32: commands succeeded
              py33: commands succeeded
              py34: commands succeeded
              pypy: commands succeeded
              congratulations :)
        
        
        .. _unittest2: https://pypi.python.org/pypi/unittest2
        .. _unittest2py3k: https://pypi.python.org/pypi/unittest2py3k
        .. _Tox: http://tox.testrun.org/
        
Keywords: testing unittest2
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.5
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 :: 3.4
Classifier: Topic :: Software Development :: Testing
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
