From 38aafc037705aab2f09ec924bf634d105002e016 Mon Sep 17 00:00:00 2001 From: Vipul A M Date: Tue, 2 Jul 2013 01:54:36 +0530 Subject: Remove `FormBuilder` deprecation warning about block argument and associated tests --- actionview/test/template/form_helper_test.rb | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'actionview/test/template/form_helper_test.rb') diff --git a/actionview/test/template/form_helper_test.rb b/actionview/test/template/form_helper_test.rb index db44b00ef6..f05b6d0d94 100644 --- a/actionview/test/template/form_helper_test.rb +++ b/actionview/test/template/form_helper_test.rb @@ -2916,18 +2916,6 @@ class FormHelperTest < ActionView::TestCase assert_equal "fields", output end - def test_form_builder_block_argument_deprecation - builder_class = Class.new(ActionView::Helpers::FormBuilder) do - def initialize(object_name, object, template, options, block) - super - end - end - - assert_deprecated(/Giving a block to FormBuilder is deprecated and has no effect anymore/) do - builder_class.new(:foo, nil, nil, {}, proc {}) - end - end - def test_form_for_only_instantiates_builder_once initialization_count = 0 builder_class = Class.new(ActionView::Helpers::FormBuilder) do -- cgit v1.2.3