aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/url_for_test.rb (renamed from actionpack/test/abstract/url_for_test.rb)14
1 files changed, 7 insertions, 7 deletions
diff --git a/actionpack/test/abstract/url_for_test.rb b/actionpack/test/controller/url_for_test.rb
index e5570349b8..749fa5861f 100644
--- a/actionpack/test/abstract/url_for_test.rb
+++ b/actionpack/test/controller/url_for_test.rb
@@ -5,7 +5,7 @@ module AbstractController
class UrlForTests < ActionController::TestCase
class W
- include AbstractController::UrlFor
+ include ActionController::UrlFor
end
def teardown
@@ -132,7 +132,7 @@ module AbstractController
end
# We need to create a new class in order to install the new named route.
- kls = Class.new { include AbstractController::UrlFor }
+ kls = Class.new { include ActionController::UrlFor }
controller = kls.new
assert controller.respond_to?(:home_url)
assert_equal 'http://www.basecamphq.com/home/sweet/home/again',
@@ -153,7 +153,7 @@ module AbstractController
match '/home/sweet/home/:user', :to => 'home#index', :as => :home
end
- kls = Class.new { include AbstractController::UrlFor }
+ kls = Class.new { include ActionController::UrlFor }
controller = kls.new
assert_equal 'http://www.basecamphq.com/subdir/home/sweet/home/again',
@@ -171,7 +171,7 @@ module AbstractController
end
# We need to create a new class in order to install the new named route.
- kls = Class.new { include AbstractController::UrlFor }
+ kls = Class.new { include ActionController::UrlFor }
controller = kls.new
assert controller.respond_to?(:home_url)
assert_equal '/brave/new/world',
@@ -239,7 +239,7 @@ module AbstractController
end
# We need to create a new class in order to install the new named route.
- kls = Class.new { include AbstractController::UrlFor }
+ kls = Class.new { include ActionController::UrlFor }
kls.default_url_options[:host] = 'www.basecamphq.com'
controller = kls.new
@@ -251,8 +251,8 @@ module AbstractController
end
def test_multiple_includes_maintain_distinct_options
- first_class = Class.new { include AbstractController::UrlFor }
- second_class = Class.new { include AbstractController::UrlFor }
+ first_class = Class.new { include ActionController::UrlFor }
+ second_class = Class.new { include ActionController::UrlFor }
first_host, second_host = 'firsthost.com', 'secondhost.com'