aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/url_helper_test.rb
diff options
context:
space:
mode:
authorYehuda Katz and Carl Lerche <wycats@gmail.com>2009-04-08 17:33:06 -0700
committerYehuda Katz and Carl Lerche <wycats@gmail.com>2009-04-08 17:33:41 -0700
commit6c05b5e938ac48b69aec17c598fec447e38dde31 (patch)
tree2d1144857677293454ad29f10317674dd9f7e2c3 /actionpack/test/template/url_helper_test.rb
parent91402bdd31dbda4906d19e08d63112c749cc92f4 (diff)
downloadrails-6c05b5e938ac48b69aec17c598fec447e38dde31.tar.gz
rails-6c05b5e938ac48b69aec17c598fec447e38dde31.tar.bz2
rails-6c05b5e938ac48b69aec17c598fec447e38dde31.zip
Temporarily modifies setup to call super directly. This can support more T::U runners.
Diffstat (limited to 'actionpack/test/template/url_helper_test.rb')
-rw-r--r--actionpack/test/template/url_helper_test.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/test/template/url_helper_test.rb b/actionpack/test/template/url_helper_test.rb
index 2f6fa134b5..c5147c2417 100644
--- a/actionpack/test/template/url_helper_test.rb
+++ b/actionpack/test/template/url_helper_test.rb
@@ -7,6 +7,7 @@ class UrlHelperTest < ActionView::TestCase
tests ActionView::Helpers::UrlHelper
def setup
+ super
@controller = Class.new do
attr_accessor :url, :request
def url_for(options)
@@ -347,6 +348,7 @@ class UrlHelperWithControllerTest < ActionView::TestCase
tests ActionView::Helpers::UrlHelper
def setup
+ super
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
@controller = UrlHelperController.new
@@ -425,6 +427,7 @@ class LinkToUnlessCurrentWithControllerTest < ActionView::TestCase
tests ActionView::Helpers::UrlHelper
def setup
+ super
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
@controller = TasksController.new
@@ -527,6 +530,7 @@ class PolymorphicControllerTest < ActionView::TestCase
tests ActionView::Helpers::UrlHelper
def setup
+ super
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
end