aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2010-03-17 16:04:41 -0500
committerJoshua Peek <josh@joshpeek.com>2010-03-17 16:05:29 -0500
commit13a783672aad338b9c7ade5319ec7967768905d7 (patch)
tree178fbfebf284ef25cbeeb1b5015e7a405ea91a88 /actionpack/test
parentb652aa81216f718f27ba257238d4c27dd54863b2 (diff)
downloadrails-13a783672aad338b9c7ade5319ec7967768905d7.tar.gz
rails-13a783672aad338b9c7ade5319ec7967768905d7.tar.bz2
rails-13a783672aad338b9c7ade5319ec7967768905d7.zip
Install url helpers on module instance so they can be accessed
globally
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/dispatch/routing_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb
index f5fcf9b0df..e4d83fa0a4 100644
--- a/actionpack/test/dispatch/routing_test.rb
+++ b/actionpack/test/dispatch/routing_test.rb
@@ -193,6 +193,7 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest
assert_equal '/login', url_for(:controller => 'sessions', :action => 'new', :only_path => true)
assert_equal 'http://rubyonrails.org/login', Routes.url_for(:controller => 'sessions', :action => 'create')
+ assert_equal 'http://rubyonrails.org/login', Routes.url_helpers.login_url
end
end