Skip to content

Commit

Permalink
Make Routes drop the default for action when the controller changes #651
Browse files Browse the repository at this point in the history


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@640 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Feb 17, 2005
1 parent c00bf5f commit 2906603
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions actionpack/lib/action_controller/routing.rb
Expand Up @@ -224,6 +224,7 @@ def expand_controller_path!(options, defaults)
else
relative_to = defaults[:controller] ? defaults[:controller].split('/')[0..-2].join('/') : ''
options[:controller] = relative_to.empty? ? options[:controller] : "#{relative_to}/#{options[:controller]}"
defaults.delete(:action) unless options[:controller] == defaults[:controller]
end
else
options[:controller] = defaults[:controller]
Expand Down
9 changes: 7 additions & 2 deletions actionpack/test/controller/routing_tests.rb
Expand Up @@ -5,7 +5,6 @@
# ActionController::Routing::RailsRoute: 0 / 4 = 0.00%
# ActionController::Routing::Route: 0 / 8 = 0.00%

RAILS_ROOT = ""
require File.dirname(__FILE__) + '/../abstract_unit'
require 'test/unit'
require 'cgi'
Expand Down Expand Up @@ -394,10 +393,16 @@ def test_generate_no_match
assert_raises(ActionController::RoutingError) {@set.generate({}, @request)}
end


def test_encoded_strings
verify_recognize(Controllers::Admin::UserController, {:controller => 'admin/user', :action => 'info', :id => "Nicholas Seckar"}, path='/admin/user/info/Nicholas%20Seckar')
end

def test_action_dropped_when_controller_changes
@request.path_parameters = {:controller => 'content', :action => 'list'}
options = {:controller => 'resource'}
@set.connect ':action/:controller'
verify_generate('index/resource', options)
end
end

#require '../assertions/action_pack_assertions.rb'
Expand Down

0 comments on commit 2906603

Please sign in to comment.