I was reading the Rails testing doc and it looks quite comprehensive in explaining the different type of tests. I also noticed the section on Testing Routes. Does anyone know how I can do that in Django/Python? I have a bunch of web sites with some common urls that I need to test. Here's how it's done in Ruby:
def test_should_route_to_post
assert_routing '/posts/1', { :controller => "posts", :action => "show", :id => "1" }
end