aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_helper_test.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-12-20 18:08:02 +0000
committerPratik Naik <pratiknaik@gmail.com>2008-12-20 18:08:54 +0000
commit462c75b60c659d75fafaeb10dd6ba9d4c16b6cb2 (patch)
tree1ecdfc6d3b6130dca4284cfc87657d3d053a3c6e /actionpack/test/template/form_helper_test.rb
parentfda62ecf707b4023b30303dd0baf303f1ef8d344 (diff)
downloadrails-462c75b60c659d75fafaeb10dd6ba9d4c16b6cb2.tar.gz
rails-462c75b60c659d75fafaeb10dd6ba9d4c16b6cb2.tar.bz2
rails-462c75b60c659d75fafaeb10dd6ba9d4c16b6cb2.zip
Fix duplicate test name [#1058 state:resolved] [Dave Rothlisberger, Pratik Naik]
Diffstat (limited to 'actionpack/test/template/form_helper_test.rb')
-rw-r--r--actionpack/test/template/form_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb
index 52e8bf376a..9454fd7e91 100644
--- a/actionpack/test/template/form_helper_test.rb
+++ b/actionpack/test/template/form_helper_test.rb
@@ -463,7 +463,7 @@ class FormHelperTest < ActionView::TestCase
assert_dom_equal expected, output_buffer
end
- def test_nested_fields_for_with_index
+ def test_nested_fields_for_with_index_and_parent_fields
form_for('post', @post, :index => 1) do |c|
concat c.text_field(:title)
c.fields_for('comment', @comment, :index => 1) do |r|