aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2015-12-24 08:02:57 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2015-12-24 08:04:25 +0900
commit621ed494f573c4e37c1f7d37cc8741cc4c502827 (patch)
tree90939705e553792f6503862babd39ffe8786eb01 /actionview/test
parent552e4e6b9e3d6ae7a911aa496422c6c598813d5d (diff)
downloadrails-621ed494f573c4e37c1f7d37cc8741cc4c502827.tar.gz
rails-621ed494f573c4e37c1f7d37cc8741cc4c502827.tar.bz2
rails-621ed494f573c4e37c1f7d37cc8741cc4c502827.zip
fix TypeError when using submit_tag with Symbol value
Diffstat (limited to 'actionview/test')
-rw-r--r--actionview/test/template/form_tag_helper_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionview/test/template/form_tag_helper_test.rb b/actionview/test/template/form_tag_helper_test.rb
index de1eb89dc5..359ecbc637 100644
--- a/actionview/test/template/form_tag_helper_test.rb
+++ b/actionview/test/template/form_tag_helper_test.rb
@@ -510,6 +510,13 @@ class FormTagHelperTest < ActionView::TestCase
)
end
+ def test_submit_tag_with_symbol_value
+ assert_dom_equal(
+ %(<input data-disable-with="Save" name='commit' type="submit" value="Save" />),
+ submit_tag(:Save)
+ )
+ end
+
def test_button_tag
assert_dom_equal(