diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-10-09 00:53:59 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-10-09 00:53:59 +0000 |
commit | 211ffd3f792d2d0823365bdb49d29b9f7ed99ca0 (patch) | |
tree | 344300740d51e6f9a47513d06460a4606a0fc188 /actionpack/test | |
parent | 8ff92e243568a6ae72e88f48a7ae15dffaf81e57 (diff) | |
download | rails-211ffd3f792d2d0823365bdb49d29b9f7ed99ca0.tar.gz rails-211ffd3f792d2d0823365bdb49d29b9f7ed99ca0.tar.bz2 rails-211ffd3f792d2d0823365bdb49d29b9f7ed99ca0.zip |
Fixed that FormHelper#radio_button didn't respect an :id being passed in (closes #6266) [evansj]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5247 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/template/form_helper_test.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb index 95d52a30b6..14605b8abc 100644 --- a/actionpack/test/template/form_helper_test.rb +++ b/actionpack/test/template/form_helper_test.rb @@ -120,6 +120,12 @@ class FormHelperTest < Test::Unit::TestCase radio_button("post", "secret", "1") ) end + + def test_radio_button_respects_passed_in_id + assert_dom_equal('<input checked="checked" id="foo" name="post[secret]" type="radio" value="1" />', + radio_button("post", "secret", "1", :id=>"foo") + ) + end def test_text_area assert_dom_equal( |