Metadata-Version: 1.1
Name: assertpy
Version: 0.6
Summary: Assertion framework for python unit testing with a fluent API
Home-page: https://github.com/ActivisionGameScience/assertpy
Author: Justin Shacklette
Author-email: justin@saturnboy.com
License: BSD
Download-URL: https://github.com/ActivisionGameScience/assertpy/archive/0.6.tar.gz
Description: assertpy
        ========
        
        Dead simple assertions framework for unit testing in Python with a nice fluent API.
        
        Usage
        '''''
        
        Just import the ``assert_that`` function, and away you go::
        
            from assertpy import assert_that
        
            class TestSomething(object):
                def test_something(self):
                    assert_that(1 + 2).is_equal_to(3)
                    assert_that('foobar').is_length(6).starts_with('foo').ends_with('bar')
        
        Of course, ``assertpy`` works best with a python test runner
        like `Nose <http://nose.readthedocs.org/>`_
        or `pytest <http://pytest.org/latest/contents.html>`_.
Keywords: testing,assert,assertion,assert_that
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Testing
