From 0886bb391d97ec96d3028d5cac93ce2f7f8467e6 Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Mon, 10 Oct 2005 20:35:13 +0000 Subject: Fixed that an instance variable with the same name as a partial should be implicitly passed as the partial :object. Closes #2269. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2522 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/new_render_test.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'actionpack/test/controller/new_render_test.rb') diff --git a/actionpack/test/controller/new_render_test.rb b/actionpack/test/controller/new_render_test.rb index a1af0a0091..24c3a0e765 100644 --- a/actionpack/test/controller/new_render_test.rb +++ b/actionpack/test/controller/new_render_test.rb @@ -106,6 +106,11 @@ class NewRenderTestController < ActionController::Base render :partial => "hash_object", :object => {:first_name => "Sam"} end + def partial_with_implicit_local_assignment + @customer = Customer.new("Marcel") + render :partial => "customer" + end + def hello_in_a_string @customers = [ Customer.new("david"), Customer.new("mary") ] render :text => "How's there? #{render_to_string("test/list")}" @@ -380,6 +385,11 @@ class NewRenderTest < Test::Unit::TestCase assert_equal "Sam", @response.body end + def test_partial_with_implicit_local_assignment + get :partial_with_implicit_local_assignment + assert_equal "Hello: Marcel", @response.body + end + def test_render_text_with_assigns get :render_text_with_assigns assert_equal "world", assigns["hello"] -- cgit v1.2.3