diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2014-06-03 11:36:32 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2014-06-03 11:36:32 -0700 |
commit | e3df1dd047170a440582fe95b5e0fafc12acbb48 (patch) | |
tree | de88ef96f8fca90b890142fe0e4cd62a36ad4943 /actionpack | |
parent | af1c8665cd9b5157a22c1f3dd3ddd4cbde31f9a1 (diff) | |
download | rails-e3df1dd047170a440582fe95b5e0fafc12acbb48.tar.gz rails-e3df1dd047170a440582fe95b5e0fafc12acbb48.tar.bz2 rails-e3df1dd047170a440582fe95b5e0fafc12acbb48.zip |
add tests for mixing :to and controller / action
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/dispatch/routing_test.rb | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index 7dd19ae855..ba9d015258 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -3255,6 +3255,54 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest assert_equal '/admin/posts/1/comments', admin_post_comments_path('1') end + def test_mix_string_to_controller_action + draw do + get '/projects', controller: 'project_files', + action: 'index', + to: 'comments#index' + end + get '/projects' + assert_equal 'comments#index', @response.body + end + + def test_mix_string_to_controller + draw do + get '/projects', controller: 'project_files', + to: 'comments#index' + end + get '/projects' + assert_equal 'comments#index', @response.body + end + + def test_mix_string_to_action + draw do + get '/projects', action: 'index', + to: 'comments#index' + end + get '/projects' + assert_equal 'comments#index', @response.body + end + + def test_mix_symbol_to_controller_action + draw do + get '/projects', controller: 'project_files', + action: 'index', + to: :show + end + get '/projects' + assert_equal 'project_files#show', @response.body + end + + def test_mix_string_to_controller_action + draw do + get '/projects', controller: 'project_files', + action: 'index', + to: 'show' + end + get '/projects' + assert_equal 'show#index', @response.body + end + def test_shallow_path_and_prefix_are_not_added_to_non_shallow_routes draw do scope shallow_path: 'projects', shallow_prefix: 'project' do |