aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch
diff options
context:
space:
mode:
authorLuiz Felipe <luiz.felipe.gp@gmail.com>2012-09-17 11:13:45 -0300
committerLuiz Felipe <luiz.felipe.gp@gmail.com>2012-09-19 08:02:37 -0300
commit641ea6925790771acb6e91b73f9efa6ded834761 (patch)
treec77176500f6dff0778c492aae744110a2e7916d9 /actionpack/test/dispatch
parent731d8095355225a9777922c92b453b0c9c7e8e03 (diff)
downloadrails-641ea6925790771acb6e91b73f9efa6ded834761.tar.gz
rails-641ea6925790771acb6e91b73f9efa6ded834761.tar.bz2
rails-641ea6925790771acb6e91b73f9efa6ded834761.zip
Removing to_shorthand from default_controller_and_action. Fixes #6497
When using shortcut routes inside an engine the "to_shorthand" variable is set to true, causing the module scope of the route to not be applied.
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r--actionpack/test/dispatch/routing_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb
index 856248e2ac..4e83ad16d7 100644
--- a/actionpack/test/dispatch/routing_test.rb
+++ b/actionpack/test/dispatch/routing_test.rb
@@ -363,6 +363,7 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest
resources :errors, :shallow => true do
resources :notices
end
+ get 'api/version'
end
scope :path => 'api' do
@@ -1280,6 +1281,12 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest
assert_equal 'account#shorthand', @response.body
end
+ def test_match_shorthand_with_module
+ assert_equal '/api/version', api_version_path
+ get '/api/version'
+ assert_equal 'api/api#version', @response.body
+ end
+
def test_dynamically_generated_helpers_on_collection_do_not_clobber_resources_url_helper
assert_equal '/replies', replies_path
end