Metadata-Version: 1.0
Name: Attest
Version: 0.5.2
Summary: Modern, Pythonic unit testing.
Home-page: https://github.com/dag/attest
Author: Dag Odenhall
Author-email: dag.odenhall@gmail.com
License: Simplified BSD
Description: 
        Attest
        ======
        
        Attest is a unit testing framework built from the ground up with idiomatic
        Python in mind. Unlike others, it is not built on top of unittest though it
        provides compatibility by creating TestSuites from Attest collections.
        
        It has a functional API inspired by `Flask`_ and a class-based API that
        mimics Python itself. The core avoids complicated assumptions leaving you
        free to write tests however you prefer.
        
        .. _Flask: http://pypi.python.org/pypi/Flask/
        
        ::
        
            from attest import Tests
            math = Tests()
        
            @math.test
            def arithmetics():
                assert 1 + 1 == 2
        
            if __name__ == '__main__':
                math.run()
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.1
Classifier: Topic :: Software Development :: Testing
