aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2018-07-21 09:27:20 +0200
committerGitHub <noreply@github.com>2018-07-21 09:27:20 +0200
commit3576782888c307e3e192c44e332b957cd1174128 (patch)
treeb1268ef1c07d0c3217bfe228a65bd7a3030f3952 /actionview/test/template
parent205aa1462acb038df8f434e941d2a4d68f36acf5 (diff)
parentd4a4a6f11814649bf3c628492ff7ac45a6d2b610 (diff)
downloadrails-3576782888c307e3e192c44e332b957cd1174128.tar.gz
rails-3576782888c307e3e192c44e332b957cd1174128.tar.bz2
rails-3576782888c307e3e192c44e332b957cd1174128.zip
Merge pull request #33408 from ycherniavskyi/fix_leaking_special_form_with_attributes_into_html_attributes
Fix leaking special form_with attributes into html attributes
Diffstat (limited to 'actionview/test/template')
-rw-r--r--actionview/test/template/form_helper/form_with_test.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/actionview/test/template/form_helper/form_with_test.rb b/actionview/test/template/form_helper/form_with_test.rb
index ed1683bad2..f07e494ee3 100644
--- a/actionview/test/template/form_helper/form_with_test.rb
+++ b/actionview/test/template/form_helper/form_with_test.rb
@@ -464,6 +464,23 @@ class FormWithActsLikeFormForTest < FormWithTest
end
end
+ def test_form_with_with_collection_select
+ post = Post.new
+ def post.active; false; end
+ form_with(model: post) do |f|
+ concat f.collection_select(:active, [true, false], :to_s, :to_s)
+ end
+
+ expected = whole_form("/posts") do
+ "<select name='post[active]' id='post_active'>" \
+ "<option value='true'>true</option>\n" \
+ "<option selected='selected' value='false'>false</option>" \
+ "</select>"
+ end
+
+ assert_dom_equal expected, output_buffer
+ end
+
def test_form_with_with_collection_radio_buttons
post = Post.new
def post.active; false; end