aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_helper_test.rb
diff options
context:
space:
mode:
authorDavid Lee <davidomundo@gmail.com>2011-05-08 04:40:47 -0700
committerDavid Lee <davidomundo@gmail.com>2011-06-11 01:58:26 -0700
commit1cbe917237c3f8e6bdcbe97835b26b55354b8566 (patch)
tree5523eb7e4a6b79f42fc235944ca7ed2a4a85f1bf /actionpack/test/template/form_helper_test.rb
parent94df84a8a4b183037c160d513bf9fa9d1858c36f (diff)
downloadrails-1cbe917237c3f8e6bdcbe97835b26b55354b8566.tar.gz
rails-1cbe917237c3f8e6bdcbe97835b26b55354b8566.tar.bz2
rails-1cbe917237c3f8e6bdcbe97835b26b55354b8566.zip
There are no snowmen here
Diffstat (limited to 'actionpack/test/template/form_helper_test.rb')
-rw-r--r--actionpack/test/template/form_helper_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb
index 5296556fe6..0507045ad2 100644
--- a/actionpack/test/template/form_helper_test.rb
+++ b/actionpack/test/template/form_helper_test.rb
@@ -1890,7 +1890,7 @@ class FormHelperTest < ActionView::TestCase
assert_dom_equal expected, output_buffer
end
- def snowman(method = nil)
+ def hidden_fields(method = nil)
txt = %{<div style="margin:0;padding:0;display:inline">}
txt << %{<input name="utf8" type="hidden" value="&#x2713;" />}
if method && !method.to_s.in?(['get', 'post'])
@@ -1918,7 +1918,7 @@ class FormHelperTest < ActionView::TestCase
method = options
end
- form_text(action, id, html_class, remote, multipart, method) + snowman(method) + contents + "</form>"
+ form_text(action, id, html_class, remote, multipart, method) + hidden_fields(method) + contents + "</form>"
end
def test_default_form_builder