aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template
diff options
context:
space:
mode:
authorJose Añasco <joseanasco1@gmail.com>2014-12-08 20:14:34 -0500
committerJose Añasco <joseanasco1@gmail.com>2014-12-09 09:33:03 -0500
commit112274ebffa0cb3e5e15e61a866031d9200c5331 (patch)
tree06da9eee3c4727c61240d1c82a262258f4825170 /actionview/test/template
parent8e52954349c29d5f190f01b21e9087885afd8dab (diff)
downloadrails-112274ebffa0cb3e5e15e61a866031d9200c5331.tar.gz
rails-112274ebffa0cb3e5e15e61a866031d9200c5331.tar.bz2
rails-112274ebffa0cb3e5e15e61a866031d9200c5331.zip
Fix options overwritten by super
Diffstat (limited to 'actionview/test/template')
-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"))