aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorVasiliy Ermolovich <younash@gmail.com>2013-04-11 14:15:33 +0300
committerVasiliy Ermolovich <younash@gmail.com>2013-04-11 14:15:33 +0300
commit0778290b57433da3bcd707fce222b8f646b7de4f (patch)
treebd3589ac814dd90a9d98b67eb74e138cc1898354 /actionpack/test
parent2a07db716957bf1638a84aa3c1f69d26efdbdb7d (diff)
downloadrails-0778290b57433da3bcd707fce222b8f646b7de4f.tar.gz
rails-0778290b57433da3bcd707fce222b8f646b7de4f.tar.bz2
rails-0778290b57433da3bcd707fce222b8f646b7de4f.zip
options_from_collection_for_select helper takes html attributes
as the last element of the array
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/template/form_options_helper_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/test/template/form_options_helper_test.rb b/actionpack/test/template/form_options_helper_test.rb
index 94ae8549f7..1715902927 100644
--- a/actionpack/test/template/form_options_helper_test.rb
+++ b/actionpack/test/template/form_options_helper_test.rb
@@ -100,6 +100,13 @@ class FormOptionsHelperTest < ActionView::TestCase
)
end
+ def test_collection_options_with_element_attributes
+ assert_dom_equal(
+ "<option value=\"USA\" class=\"bold\">USA</option>",
+ options_from_collection_for_select([[ "USA", "USA", { :class => 'bold' } ]], :first, :second)
+ )
+ end
+
def test_string_options_for_select
options = "<option value=\"Denmark\">Denmark</option><option value=\"USA\">USA</option><option value=\"Sweden\">Sweden</option>"
assert_dom_equal(