aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2013-02-21 11:36:15 -0800
committerAndrew White <andyw@pixeltrix.co.uk>2013-02-21 11:36:15 -0800
commitf4b506f60a62e08ec21eab40ecc4b6bc668d4d59 (patch)
treeba7d2fff3c0d10ef61b72f6ec6e756eed3b7189e /actionpack/test
parent389397952460d09218bb407be1142e0b62cf3f4f (diff)
parentc88ee76928a85cc34318d0442b38da4c850b7030 (diff)
downloadrails-f4b506f60a62e08ec21eab40ecc4b6bc668d4d59.tar.gz
rails-f4b506f60a62e08ec21eab40ecc4b6bc668d4d59.tar.bz2
rails-f4b506f60a62e08ec21eab40ecc4b6bc668d4d59.zip
Merge pull request #9361 from senny/improved_match_shorthand_syntax
determine the match shorthand target early.
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/dispatch/routing_test.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb
index 143733254b..37ad9ddb6b 100644
--- a/actionpack/test/dispatch/routing_test.rb
+++ b/actionpack/test/dispatch/routing_test.rb
@@ -1146,6 +1146,33 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest
assert_equal 'api/products#list', @response.body
end
+ def test_match_shorthand_inside_scope_with_variables_with_controller
+ draw do
+ scope ':locale' do
+ match 'questions/new', via: [:get]
+ end
+ end
+
+ get '/de/questions/new'
+ assert_equal 'questions#new', @response.body
+ assert_equal 'de', @request.params[:locale]
+ end
+
+ def test_match_shorthand_inside_nested_namespaces_and_scopes_with_controller
+ draw do
+ namespace :api do
+ namespace :v3 do
+ scope ':locale' do
+ get "products/list"
+ end
+ end
+ end
+ end
+
+ get '/api/v3/en/products/list'
+ assert_equal 'api/v3/products#list', @response.body
+ end
+
def test_dynamically_generated_helpers_on_collection_do_not_clobber_resources_url_helper
draw do
resources :replies do