mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
2
actionpack/test/fixtures/test/list.rhtml
vendored
2
actionpack/test/fixtures/test/list.rhtml
vendored
@@ -1 +1 @@
|
||||
<%= render_collection_of_partials "customer", @customers %>
|
||||
<%= @test_unchanged = 'goodbye' %><%= render_collection_of_partials "customer", @customers %><%= @test_unchanged %>
|
||||
|
||||
Reference in New Issue
Block a user