aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/erb/helper.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-11-18 20:22:14 +0100
committerJosé Valim <jose.valim@gmail.com>2010-11-18 20:22:14 +0100
commite3d8331c5b543ea7ea2024d05bd79526d11341c0 (patch)
treea360f8418b53e3963e38bfce209e488dd95c208b /actionpack/test/template/erb/helper.rb
parentbe797750e6ce866ea08307f63bf35304a965c8d4 (diff)
downloadrails-e3d8331c5b543ea7ea2024d05bd79526d11341c0.tar.gz
rails-e3d8331c5b543ea7ea2024d05bd79526d11341c0.tar.bz2
rails-e3d8331c5b543ea7ea2024d05bd79526d11341c0.zip
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.
Diffstat (limited to 'actionpack/test/template/erb/helper.rb')
-rw-r--r--actionpack/test/template/erb/helper.rb4
1 files changed, 1 insertions, 3 deletions
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