+ get :index, :params => { :node => 123 }
+ assert_redirected_to :controller => :browse, :action => :node, :id => 123
+
+ get :index, :params => { :way => 123 }
+ assert_redirected_to :controller => :browse, :action => :way, :id => 123
+
+ get :index, :params => { :relation => 123 }
+ assert_redirected_to :controller => :browse, :action => :relation, :id => 123
+
+ get :index, :params => { :note => 123 }
+ assert_redirected_to :controller => :browse, :action => :note, :id => 123
+
+ get :index, :params => { :query => "test" }
+ assert_redirected_to :controller => :geocoder, :action => :search, :query => "test"
+
+ get :index, :params => { :lat => 4, :lon => 5 }