Metadata-Version: 1.1
Name: preggy
Version: 1.1.2
Summary: preggy is an assertion library for Python. (What were you ``expect()``ing?)
Home-page: http://heynemann.github.io/preggy
Author: Zearin
Author-email: zearin@gonk.net
License: MIT
Download-URL: https://github.com/heynemann/preggy/releases/tag/1.1.2
Description: preggy is an assertion library for Python. (What were you ``expect()``ing?)
        
        
        EXAMPLE
        =======
        
            from preggy import expect
        
            def test_roses_are_red():
                rose = Rose()
                expect(rose.color).to_equal('red')
        
            def test_violets_are_not_red():
                violet = Violet()
                expect(violet.color).not_to_equal('red')
        
        
        For more info:
        http://heynemann.github.io/preggy
        
        
Keywords: test testing assert assertion library development
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Testing
