Skip to content

Commit

Permalink
Added unit test to cover changes to RouteSet.url_for
Browse files Browse the repository at this point in the history
ActionDispatch::Routing::RouteSet.url_for now handles passing params through to
ActionDispatch::Http::Url.url_for
  • Loading branch information
rmm5t committed Feb 7, 2012
1 parent 391e6a4 commit 0e482b3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions actionpack/test/controller/base_test.rb
Expand Up @@ -257,6 +257,22 @@ def test_url_for_params_priority
assert_equal '/special', rs.url_for(url_params)
end

def test_url_for_query_params_included
rs = ActionDispatch::Routing::RouteSet.new
rs.draw do
match 'home' => 'pages#home'
end

options = {
:action => "home",
:controller => "pages",
:only_path => true,
:params => { "token" => "secret" }
}

assert_equal '/home?token=secret', rs.url_for(options)
end

def test_url_options_override
with_routing do |set|
set.draw do
Expand Down

0 comments on commit 0e482b3

Please sign in to comment.