+ assert_routing(
+ { :path => "/help", :method => :get },
+ { :controller => "site", :action => "help" }
+ )
+ assert_routing(
+ { :path => "/about", :method => :get },
+ { :controller => "site", :action => "about" }
+ )
+ assert_routing(
+ { :path => "/about/locale", :method => :get },
+ { :controller => "site", :action => "about", :about_locale => "locale" }
+ )