diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2017-01-03 13:46:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-03 13:46:30 -0500 |
commit | 058eb959bff8e43953f435bdf25d35435440d09e (patch) | |
tree | 248f248c050f9da825e45b004a9933b064968ea4 /actionview/test | |
parent | 2a7fcdad18e043b141eb2abe37bd5f241ca9c8c7 (diff) | |
parent | 3d2645ab138c9158ca4224458de74c723d4441cc (diff) | |
download | rails-058eb959bff8e43953f435bdf25d35435440d09e.tar.gz rails-058eb959bff8e43953f435bdf25d35435440d09e.tar.bz2 rails-058eb959bff8e43953f435bdf25d35435440d09e.zip |
Merge pull request #27548 from tylerhunt/fix-duplicate-disable-with
Prevent duplicate data-disable-with attributes
Diffstat (limited to 'actionview/test')
-rw-r--r-- | actionview/test/template/form_tag_helper_test.rb | 7 |
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 1248a0bb09..084c540139 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_doesnt_have_data_disable_with_twice_with_hash + assert_equal( + %(<input type="submit" name="commit" value="Save" data-disable-with="Processing..." />), + submit_tag("Save", data: { disable_with: "Processing..." }) + ) + end + def test_submit_tag_with_symbol_value assert_dom_equal( %(<input data-disable-with="Save" name='commit' type="submit" value="Save" />), |