From 9e5d64b3bbc9a1a4b15c4728d65dbce226ca9512 Mon Sep 17 00:00:00 2001 From: Nicholas Seckar Date: Sun, 11 Sep 2005 13:45:55 +0000 Subject: Provide Named Route's hash methods as helper methods. Closes #1744. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2204 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/routing_test.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'actionpack/test') diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb index 27433624e9..cc8b50390b 100644 --- a/actionpack/test/controller/routing_test.rb +++ b/actionpack/test/controller/routing_test.rb @@ -545,6 +545,7 @@ class RouteSetTests < Test::Unit::TestCase def setup @rs = ::ActionController::Routing::RouteSet.new @rs.draw {|m| m.connect ':controller/:action/:id' } + ::ActionController::Routing::NamedRoutes.clear end def test_default_setup @@ -854,6 +855,11 @@ class RouteSetTests < Test::Unit::TestCase assert_equal ['/content/hi', []], rs.generate({:controller => 'content', :action => 'hi'}) end + def test_named_route_helper_array + test_named_route_method + assert_equal [:categories_url, :hash_for_categories_url], ::ActionController::Routing::NamedRoutes::Helpers + end + end end -- cgit v1.2.3