diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-02-26 01:07:05 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-02-26 01:07:05 +0000 |
commit | 231a464d4e1795283410fb98b7740bed2b2e76a1 (patch) | |
tree | bfa652ab494926c6b9a6f0e8c1c532163ef9113d /actionpack/test/template | |
parent | 06dd7b8efa3073f413cf7a6b57c6a1a90a242ae1 (diff) | |
download | rails-231a464d4e1795283410fb98b7740bed2b2e76a1.tar.gz rails-231a464d4e1795283410fb98b7740bed2b2e76a1.tar.bz2 rails-231a464d4e1795283410fb98b7740bed2b2e76a1.zip |
Fixed that form elements would strip the trailing [] from the first parameter (closes #3545) [ruby@bobsilva.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3661 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/form_helper_test.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb index 20c90ea832..f0e1522807 100644 --- a/actionpack/test/template/form_helper_test.rb +++ b/actionpack/test/template/form_helper_test.rb @@ -68,6 +68,13 @@ class FormHelperTest < Test::Unit::TestCase assert_dom_equal expected, text_field("post", "title", :maxlength => 35) end + def test_text_field_doesnt_change_param_values + object_name = 'post[]' + expected = '<input id="post_123_title" name="post[123][title]" size="30" type="text" value="Hello World" />' + assert_equal expected, text_field(object_name, "title") + assert_equal object_name, "post[]" + end + def test_check_box assert_dom_equal( '<input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="1" /><input name="post[secret]" type="hidden" value="0" />', |