Skip to content

Commit

Permalink
Make partial counter start from 0 (as in 2.0.x)
Browse files Browse the repository at this point in the history
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
  • Loading branch information
fcheung authored and lifo committed Jun 5, 2008
1 parent cce30f7 commit a04bfac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion actionpack/lib/action_view/partial_template.rb
Expand Up @@ -22,10 +22,10 @@ def render
end

def render_member(object)
@locals[@counter_name] += 1
@locals[:object] = @locals[@variable_name] = object

template = render_template
@locals[@counter_name] += 1
@locals.delete(@variable_name)
@locals.delete(:object)

Expand Down
4 changes: 2 additions & 2 deletions actionpack/test/controller/new_render_test.rb
Expand Up @@ -742,7 +742,7 @@ def test_partial_collection

def test_partial_collection_with_counter
get :partial_collection_with_counter
assert_equal "david1mary2", @response.body
assert_equal "david0mary1", @response.body
end

def test_partial_collection_with_locals
Expand All @@ -762,7 +762,7 @@ def test_partial_collection_shorthand_with_locals

def test_partial_collection_shorthand_with_different_types_of_records
get :partial_collection_shorthand_with_different_types_of_records
assert_equal "Bonjour bad customer: mark1Bonjour good customer: craig2Bonjour bad customer: john3Bonjour good customer: zach4Bonjour good customer: brandon5Bonjour bad customer: dan6", @response.body
assert_equal "Bonjour bad customer: mark0Bonjour good customer: craig1Bonjour bad customer: john2Bonjour good customer: zach3Bonjour good customer: brandon4Bonjour bad customer: dan5", @response.body
end

def test_empty_partial_collection
Expand Down

0 comments on commit a04bfac

Please sign in to comment.