aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
authorKevin Glowacz <glowacz@gmail.com>2008-04-30 17:21:18 -0500
committerJoshua Peek <josh@joshpeek.com>2008-04-30 17:21:18 -0500
commitc83f75812ef89aea1b8d138aebec25de8057f156 (patch)
treeb44d83fb5da25ea8b833037d6e074adb3bff8759 /actionpack/test/template
parent96d9691e71319f4c166315a36b96c2c3c54ed493 (diff)
downloadrails-c83f75812ef89aea1b8d138aebec25de8057f156.tar.gz
rails-c83f75812ef89aea1b8d138aebec25de8057f156.tar.bz2
rails-c83f75812ef89aea1b8d138aebec25de8057f156.zip
Fixed labels that have a bracketed name and an index [#68 state:resolved]
Signed-off-by: Joshua Peek <josh@joshpeek.com>
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/form_helper_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb
index 87e6ca12a1..b4857fcb62 100644
--- a/actionpack/test/template/form_helper_test.rb
+++ b/actionpack/test/template/form_helper_test.rb
@@ -540,6 +540,18 @@ class FormHelperTest < ActionView::TestCase
_erbout
end
+ def test_fields_for_object_with_bracketed_name_and_index
+ _erbout = ''
+ fields_for("author[post]", @post, :index => 1) do |f|
+ _erbout.concat f.label(:title)
+ _erbout.concat f.text_field(:title)
+ end
+
+ assert_dom_equal "<label for=\"author_post_1_title\">Title</label>" +
+ "<input name='author[post][1][title]' size='30' type='text' id='author_post_1_title' value='Hello World' />",
+ _erbout
+ end
+
def test_form_builder_does_not_have_form_for_method
assert ! ActionView::Helpers::FormBuilder.instance_methods.include?('form_for')
end