aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2012-03-04 08:34:41 -0800
committerPiotr Sarnacki <drogus@gmail.com>2012-03-04 08:34:41 -0800
commite09fd970183fe1d4f65f3bc7a68de4041042c0fd (patch)
tree33e6722db24d973339e8ac3bd39ee63477bfe9a8 /actionpack/test
parent44e79673ae8d9ef63a2630fb97711c4d2e2126ee (diff)
parent2ee4dd856d47113625589bc5410b5a6669ea02d5 (diff)
downloadrails-e09fd970183fe1d4f65f3bc7a68de4041042c0fd.tar.gz
rails-e09fd970183fe1d4f65f3bc7a68de4041042c0fd.tar.bz2
rails-e09fd970183fe1d4f65f3bc7a68de4041042c0fd.zip
Merge pull request #5266 from bcardarella/root_with_string_options
Route root helper shortcut
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/routing_test.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb
index 2a7c1f86c6..272a7da8c5 100644
--- a/actionpack/test/controller/routing_test.rb
+++ b/actionpack/test/controller/routing_test.rb
@@ -437,6 +437,15 @@ class LegacyRouteSetTests < ActiveSupport::TestCase
assert_equal("/", routes.send(:root_path))
end
+ def test_named_route_root_without_hash
+ rs.draw do
+ root "hello#index"
+ end
+ routes = setup_for_named_route
+ assert_equal("http://test.host/", routes.send(:root_url))
+ assert_equal("/", routes.send(:root_path))
+ end
+
def test_named_route_with_regexps
rs.draw do
match 'page/:year/:month/:day/:title' => 'page#show', :as => 'article',