Added tests for partial collection counters [#766 state:resolved]

Signed-off-by: Joshua Peek <josh@joshpeek.com>
This commit is contained in:
Cameron Yule
2008-08-09 10:34:19 -05:00
committed by Joshua Peek
parent ea0d036e31
commit 2faf35cea9
3 changed files with 18 additions and 4 deletions

View File

@@ -136,6 +136,10 @@ class NewRenderTestController < ActionController::Base
render :partial => "partial_only", :layout => true
end
def partial_with_counter
render :partial => "counter", :locals => { :counter_counter => 5 }
end
def partial_with_locals
render :partial => "customer", :locals => { :customer => Customer.new("david") }
end
@@ -741,6 +745,11 @@ EOS
assert_equal "<title>Talking to the layout</title>\nAction was here!", @response.body
end
def test_partial_with_counter
get :partial_with_counter
assert_equal "5", @response.body
end
def test_partials_list
get :partials_list
assert_equal "goodbyeHello: davidHello: marygoodbye\n", @response.body