From 28012e68fe2837207a9319a24c541eabfc5b3ff7 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 24 Jun 2005 17:48:14 +0000 Subject: Fix routes generation for unit tests. #1434 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1497 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/routing.rb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/actionpack/lib/action_controller/routing.rb b/actionpack/lib/action_controller/routing.rb index 12464f9dcf..a402ddf1a3 100644 --- a/actionpack/lib/action_controller/routing.rb +++ b/actionpack/lib/action_controller/routing.rb @@ -383,6 +383,10 @@ module ActionController def generate_path(merged, options, expire_on) send @generation_methods[merged[:controller]], merged, options, expire_on end + def generate_default_path(*args) + write_generation + generate_default_path(*args) + end def write_generation @generation_methods = Hash.new(:generate_default_path) @@ -499,7 +503,11 @@ module ActionController def reload NamedRoutes.clear - load(File.join(RAILS_ROOT, 'config', 'routes.rb')) + + if defined?(RAILS_ROOT) then load(File.join(RAILS_ROOT, 'config', 'routes.rb')) + else connect(':controller/:action/:id', :action => 'index', :id => nil) + end + NamedRoutes.install end -- cgit v1.2.3