Examples in a readable format :)
Here are the above examples in a somewhat more readable format:
# Assert a basic route: a controller with the default action (index)
assert_routing ‘/home’, :controller => ‘home’, :action => ‘index’
# Test a route generated with a specific controller, action, and parameter (id)
a...