Metadata-Version: 1.0
Name: urltest
Version: 0.2.3
Summary: A wrapper around WebTest which provides a nice domain specific language for testing URLs in WSGI applications
Home-page: http://github.com/garethr/urltest
Author: Gareth Rushgrove
Author-email: gareth@morethanseven.net
License: MIT License
Description: #!/usr/bin/env python
        
        from example_app import application
        from urltest import verify_urls
        
        if __name__ == "__main__":
        urls = (
        {'url':"/", 'code':200},
        {'url':"/bob", 'code':200},
        {'url':"/jim", 'code':404},
        {'url':"/jim", 'method': "POST", 'code':405},
        )
        verify_urls(urls, application)
        
Keywords: wsgi testing urls
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Testing
