r2874@asus: jeremy | 2005-07-05 16:13:39 -0700

Unit test for Ticket #1614.


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1717 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2005-07-05 18:21:26 +00:00
parent 607ce7f0a0
commit 8a2fec8d31
3 changed files with 6 additions and 5 deletions

View File

@@ -69,6 +69,7 @@ class NewRenderTestController < ActionController::Base
end
def partials_list
@test_unchanged = 'hello'
@customers = [ Customer.new("david"), Customer.new("mary") ]
render :action => "list"
end
@@ -222,7 +223,7 @@ class NewRenderTest < Test::Unit::TestCase
def test_partials_list
get :partials_list
assert_equal "Hello: davidHello: mary", @response.body
assert_equal "goodbyeHello: davidHello: marygoodbye\n", @response.body
end
def test_partial_only
@@ -237,7 +238,7 @@ class NewRenderTest < Test::Unit::TestCase
def test_render_to_string
get :hello_in_a_string
assert_equal "How's there? Hello: davidHello: mary", @response.body
assert_equal "How's there? goodbyeHello: davidHello: marygoodbye\n", @response.body
end
def test_nested_rendering

View File

@@ -174,7 +174,7 @@ class RenderTest < Test::Unit::TestCase
def test_partials_list
@request.action = "partials_list"
assert_equal "Hello: davidHello: mary", process_request.body
assert_equal "goodbyeHello: davidHello: marygoodbye\n", process_request.body
end
def test_partial_only
@@ -184,7 +184,7 @@ class RenderTest < Test::Unit::TestCase
def test_render_to_string
@request.action = "hello_in_a_string"
assert_equal "How's there? Hello: davidHello: mary", process_request.body
assert_equal "How's there? goodbyeHello: davidHello: marygoodbye\n", process_request.body
end
def test_nested_rendering

View File

@@ -1 +1 @@
<%= render_collection_of_partials "customer", @customers %>
<%= @test_unchanged = 'goodbye' %><%= render_collection_of_partials "customer", @customers %><%= @test_unchanged %>