From dacbcbe55745aa9e5484b10b11f65ccca7db1c54 Mon Sep 17 00:00:00 2001 From: Vasiliy Ermolovich Date: Sat, 21 Jul 2012 13:34:03 +0300 Subject: don't escape options in option_html_attributes method we don't need to escape values in this method as we pass these html attributes to `tag_options` method that handle escaping as well. it fixes the case when we want to pass html5 data options --- .../test/template/form_options_helper_test.rb | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) (limited to 'actionpack/test/template') diff --git a/actionpack/test/template/form_options_helper_test.rb b/actionpack/test/template/form_options_helper_test.rb index 2322fb0406..96d99367be 100644 --- a/actionpack/test/template/form_options_helper_test.rb +++ b/actionpack/test/template/form_options_helper_test.rb @@ -1130,6 +1130,13 @@ class FormOptionsHelperTest < ActionView::TestCase ) end + def test_options_for_select_with_data_element + assert_dom_equal( + "", + options_for_select([ [ "", { :data => { :test => 'bold' } } ] ]) + ) + end + def test_options_for_select_with_element_attributes_and_selection assert_dom_equal( "\n\n", @@ -1144,6 +1151,13 @@ class FormOptionsHelperTest < ActionView::TestCase ) end + def test_options_for_select_with_special_characters + assert_dom_equal( + "", + options_for_select([ [ "", { :onclick => %(alert("")) } ] ]) + ) + end + def test_option_html_attributes_from_without_hash assert_equal( {}, @@ -1172,13 +1186,6 @@ class FormOptionsHelperTest < ActionView::TestCase ) end - def test_option_html_attributes_with_special_characters - assert_equal( - {:onclick => "alert("<code>")"}, - option_html_attributes([ 'foo', 'bar', { :onclick => %(alert("")) } ]) - ) - end - def test_grouped_collection_select @post = Post.new @post.origin = 'dk' -- cgit v1.2.3