aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_helper_test.rb
diff options
context:
space:
mode:
authorLeonardo Capillera <leonardo@wyeworks.com>2010-11-18 16:31:27 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2010-11-18 16:46:55 -0200
commitbe797750e6ce866ea08307f63bf35304a965c8d4 (patch)
tree1f5427f7ce13ab209c874598a1bf15bcd0fe78a2 /actionpack/test/template/form_helper_test.rb
parentc52e2cf4b3ef22fea6989df906a53188e632b9a4 (diff)
downloadrails-be797750e6ce866ea08307f63bf35304a965c8d4.tar.gz
rails-be797750e6ce866ea08307f63bf35304a965c8d4.tar.bz2
rails-be797750e6ce866ea08307f63bf35304a965c8d4.zip
Remove deprecated form_for with strings or symbols
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'actionpack/test/template/form_helper_test.rb')
-rw-r--r--actionpack/test/template/form_helper_test.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb
index 2c60096475..7179ae4e9c 100644
--- a/actionpack/test/template/form_helper_test.rb
+++ b/actionpack/test/template/form_helper_test.rb
@@ -781,23 +781,6 @@ class FormHelperTest < ActionView::TestCase
assert_dom_equal expected, output_buffer
end
- def test_form_for_without_object
- form_for(:post, :html => { :id => 'create-post' }) do |f|
- concat f.text_field(:title)
- concat f.text_area(:body)
- concat f.check_box(:secret)
- end
-
- expected = whole_form("/", "create-post") do
- "<input name='post[title]' size='30' type='text' id='post_title' value='Hello World' />" +
- "<textarea name='post[body]' id='post_body' rows='20' cols='40'>Back to the hill and over it again!</textarea>" +
- "<input name='post[secret]' type='hidden' value='0' />" +
- "<input name='post[secret]' checked='checked' type='checkbox' id='post_secret' value='1' />"
- end
-
- assert_dom_equal expected, output_buffer
- end
-
def test_form_for_with_index
form_for(@post, :as => "post[]") do |f|
concat f.label(:title)
@@ -867,22 +850,6 @@ class FormHelperTest < ActionView::TestCase
I18n.locale = old_locale
end
- def test_submit_without_object_and_locale_strings
- old_locale, I18n.locale = I18n.locale, :submit
-
- form_for(:post) do |f|
- concat f.submit :class => "extra"
- end
-
- expected = whole_form do
- "<input name='commit' class='extra' id='post_submit' type='submit' value='Save changes' />"
- end
-
- assert_dom_equal expected, output_buffer
- ensure
- I18n.locale = old_locale
- end
-
def test_submit_with_object_and_nested_lookup
old_locale, I18n.locale = I18n.locale, :submit