diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-06-28 23:35:43 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-28 23:35:43 -0300 |
commit | 6e6e8abec10e31a9c3eb975e1c563093e9218ae5 (patch) | |
tree | 20a820144bbff6e4b8764690cccac4ddf5838cde | |
parent | a215642828bba664e39e8238c34a8367e30ac530 (diff) | |
parent | 4582a3661724c2cda55a8f8ac53f37686ca72927 (diff) | |
download | rails-6e6e8abec10e31a9c3eb975e1c563093e9218ae5.tar.gz rails-6e6e8abec10e31a9c3eb975e1c563093e9218ae5.tar.bz2 rails-6e6e8abec10e31a9c3eb975e1c563093e9218ae5.zip |
Merge pull request #25562 from vipulnsward/select-html-options-test
Add coverage for #25529
-rw-r--r-- | actionview/test/template/form_options_helper_test.rb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/actionview/test/template/form_options_helper_test.rb b/actionview/test/template/form_options_helper_test.rb index 7a5904f151..a85f2da264 100644 --- a/actionview/test/template/form_options_helper_test.rb +++ b/actionview/test/template/form_options_helper_test.rb @@ -738,7 +738,7 @@ class FormOptionsHelperTest < ActionView::TestCase ) end - def test_empty + def test_select_with_empty @post = Post.new @post.category = "" assert_dom_equal( @@ -747,6 +747,15 @@ class FormOptionsHelperTest < ActionView::TestCase ) end + def test_select_with_html_options + @post = Post.new + @post.category = "" + assert_dom_equal( + "<select class=\"disabled\" disabled=\"disabled\" name=\"post[category]\" id=\"post_category\"><option value=\"\">Please select</option>\n<option value=\"\"></option>\n</select>", + select("post", "category", [], { prompt: true, include_blank: true }, { class: 'disabled', disabled: true }) + ) + end + def test_select_with_nil @post = Post.new @post.category = "othervalue" |