From e3d8331c5b543ea7ea2024d05bd79526d11341c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Thu, 18 Nov 2010 20:22:14 +0100 Subject: Revert "Remove deprecated form_for with strings or symbols" This code was not deprecated. What was deprecated is the following: form_for(:foo, @foo) Which now should be rewritten as: form_for(@foo, :as => :foo) The following format is valid: form_for(:foo) This reverts commit be797750e6ce866ea08307f63bf35304a965c8d4. --- actionpack/test/template/erb/helper.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'actionpack/test/template/erb/helper.rb') diff --git a/actionpack/test/template/erb/helper.rb b/actionpack/test/template/erb/helper.rb index fb9d0315f3..799f9e4036 100644 --- a/actionpack/test/template/erb/helper.rb +++ b/actionpack/test/template/erb/helper.rb @@ -4,8 +4,6 @@ module ERBTest include ActionView::Helpers::TagHelper include ActionView::Helpers::JavaScriptHelper include ActionView::Helpers::FormHelper - include ActionView::Context - include ActionController::RecordIdentifier attr_accessor :output_buffer, :controller @@ -22,4 +20,4 @@ module ERBTest "<%= #{str} do %>#{rest}<% end %>" end end -end +end \ No newline at end of file -- cgit v1.2.3