aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/render_test.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-08-29 21:08:14 -0300
committerJosé Valim <jose.valim@gmail.com>2010-08-29 21:08:14 -0300
commitba52748d05da4f95a8f371d628af97b76644bdd3 (patch)
tree0f104ebfdb7c5dfd25dba227d7e6708b904e08c6 /actionpack/test/template/render_test.rb
parent800695ad4cef33347bcfef6df7634ff533582449 (diff)
downloadrails-ba52748d05da4f95a8f371d628af97b76644bdd3.tar.gz
rails-ba52748d05da4f95a8f371d628af97b76644bdd3.tar.bz2
rails-ba52748d05da4f95a8f371d628af97b76644bdd3.zip
Remove deprecated support to <% form_for %> and several ActionController::Base methods.
Diffstat (limited to 'actionpack/test/template/render_test.rb')
-rw-r--r--actionpack/test/template/render_test.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/actionpack/test/template/render_test.rb b/actionpack/test/template/render_test.rb
index 60d4d9f4a7..229766612f 100644
--- a/actionpack/test/template/render_test.rb
+++ b/actionpack/test/template/render_test.rb
@@ -234,15 +234,6 @@ module RenderTestCases
@view.render(:file => "test/hello_world.erb", :layout => "layouts/yield_with_render_inline_inside")
end
-
- # TODO: Move to deprecated_tests.rb
- def test_render_with_nested_layout_deprecated
- assert_deprecated do
- assert_equal %(<title>title</title>\n\n<div id="column">column</div>\n<div id="content">content</div>\n),
- @view.render(:file => "test/deprecated_nested_layout.erb", :layout => "layouts/yield")
- end
- end
-
def test_render_with_nested_layout
assert_equal %(<title>title</title>\n\n<div id="column">column</div>\n<div id="content">content</div>\n),
@view.render(:file => "test/nested_layout.erb", :layout => "layouts/yield")