aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-03-18 16:55:32 -0700
committerCarlhuda <carlhuda@engineyard.com>2010-03-18 16:55:32 -0700
commitedb5991a14e0dfb65d2b8802d61b44fc47004921 (patch)
tree1dd864dddc6fb2c46db5cb758dc2e859825985c3 /actionpack/test/controller
parent71c9337f45f9c5461cbc6ddf6cab764ad0f82c3b (diff)
downloadrails-edb5991a14e0dfb65d2b8802d61b44fc47004921.tar.gz
rails-edb5991a14e0dfb65d2b8802d61b44fc47004921.tar.bz2
rails-edb5991a14e0dfb65d2b8802d61b44fc47004921.zip
Make render :partial, :layout consistent between AC and AV
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/render_test.rb12
1 files changed, 1 insertions, 11 deletions
diff --git a/actionpack/test/controller/render_test.rb b/actionpack/test/controller/render_test.rb
index 24817a93d2..2f3997518f 100644
--- a/actionpack/test/controller/render_test.rb
+++ b/actionpack/test/controller/render_test.rb
@@ -513,10 +513,6 @@ class TestController < ActionController::Base
end
end
- def partial_only_with_layout
- render :partial => "partial_only", :layout => true
- end
-
def render_to_string_with_partial
@partial_only = render_to_string :partial => "partial_only"
@partial_with_locals = render_to_string :partial => "customer", :locals => { :customer => Customer.new("david") }
@@ -640,8 +636,7 @@ class TestController < ActionController::Base
"rendering_nothing_on_layout", "render_text_hello_world",
"render_text_hello_world_with_layout",
"hello_world_with_layout_false",
- "partial_only", "partial_only_with_layout",
- "accessing_params_in_template",
+ "partial_only", "accessing_params_in_template",
"accessing_params_in_template_with_layout",
"render_with_explicit_template",
"render_with_explicit_string_template",
@@ -1204,11 +1199,6 @@ class RenderTest < ActionController::TestCase
assert_equal 'partial html', @response.body
end
- def test_partial_only_with_layout
- get :partial_only_with_layout
- assert_equal "<html>only partial</html>", @response.body
- end
-
def test_render_to_string_partial
get :render_to_string_with_partial
assert_equal "only partial", assigns(:partial_only)