mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
5048aa9831
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4947 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
43 lines
1.1 KiB
Ruby
43 lines
1.1 KiB
Ruby
require File.dirname(__FILE__) + '/../../abstract_unit'
|
|
|
|
class DeprecatedBaseMethodsTest < Test::Unit::TestCase
|
|
class Target < ActionController::Base
|
|
def deprecated_symbol_parameter_to_url_for
|
|
redirect_to(url_for(:home_url, "superstars"))
|
|
end
|
|
|
|
def deprecated_render_parameters
|
|
render "fun/games/hello_world"
|
|
end
|
|
|
|
def home_url(greeting)
|
|
"http://example.com/#{greeting}"
|
|
end
|
|
|
|
def rescue_action(e) raise e end
|
|
end
|
|
|
|
Target.template_root = File.dirname(__FILE__) + "/../../fixtures"
|
|
|
|
def setup
|
|
@request = ActionController::TestRequest.new
|
|
@response = ActionController::TestResponse.new
|
|
@controller = Target.new
|
|
end
|
|
|
|
def test_deprecated_symbol_parameter_to_url_for
|
|
assert_deprecated("url_for(:home_url)") do
|
|
get :deprecated_symbol_parameter_to_url_for
|
|
end
|
|
|
|
assert_redirected_to "http://example.com/superstars"
|
|
end
|
|
|
|
def test_deprecated_render_parameters
|
|
assert_deprecated("render('fun/games/hello_world')") do
|
|
get :deprecated_render_parameters
|
|
end
|
|
|
|
assert_equal "Living in a nested world", @response.body
|
|
end
|
|
end
|