<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>urltest</name>
<shortdesc>A wrapper around WebTest which provides a nice domain specific language for testing URLs in WSGI applications</shortdesc>
<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)</description>
<homepage rdf:resource="http://github.com/garethr/urltest" />
<maintainer><foaf:Person><foaf:name>Gareth Rushgrove</foaf:name>
<foaf:mbox_sha1sum>a08185c137e29054830f16aeb281597f31355dd1</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>0.2.3</revision></Version></release>
</Project></rdf:RDF>