aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template/form_helper_test.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-12-09 13:02:35 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-12-09 13:02:35 -0200
commit5c7b5dc741f6980de2592e9b113ae385000a6da7 (patch)
tree06da9eee3c4727c61240d1c82a262258f4825170 /actionview/test/template/form_helper_test.rb
parent8e52954349c29d5f190f01b21e9087885afd8dab (diff)
parent112274ebffa0cb3e5e15e61a866031d9200c5331 (diff)
downloadrails-5c7b5dc741f6980de2592e9b113ae385000a6da7.tar.gz
rails-5c7b5dc741f6980de2592e9b113ae385000a6da7.tar.bz2
rails-5c7b5dc741f6980de2592e9b113ae385000a6da7.zip
Merge pull request #17975 from merongivian/add_test_for_search_field
Fix options overwritten by super
Diffstat (limited to 'actionview/test/template/form_helper_test.rb')
-rw-r--r--actionview/test/template/form_helper_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionview/test/template/form_helper_test.rb b/actionview/test/template/form_helper_test.rb
index a131752b2a..1459b9f02a 100644
--- a/actionview/test/template/form_helper_test.rb
+++ b/actionview/test/template/form_helper_test.rb
@@ -928,6 +928,11 @@ class FormHelperTest < ActionView::TestCase
assert_dom_equal(expected, search_field("contact", "notes_query"))
end
+ def test_search_field_with_onsearch_value
+ expected = %{<input onsearch="true" type="search" name="contact[notes_query]" id="contact_notes_query" incremental="true" />}
+ assert_dom_equal(expected, search_field("contact", "notes_query", onsearch: true))
+ end
+
def test_telephone_field
expected = %{<input id="user_cell" name="user[cell]" type="tel" />}
assert_dom_equal(expected, telephone_field("user", "cell"))