mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
e3d8331c5b
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 be797750e6
.
23 lines
No EOL
628 B
Ruby
23 lines
No EOL
628 B
Ruby
module ERBTest
|
|
class ViewContext
|
|
include SharedTestRoutes.url_helpers
|
|
include ActionView::Helpers::TagHelper
|
|
include ActionView::Helpers::JavaScriptHelper
|
|
include ActionView::Helpers::FormHelper
|
|
|
|
attr_accessor :output_buffer, :controller
|
|
|
|
def protect_against_forgery?() false end
|
|
end
|
|
|
|
class BlockTestCase < ActiveSupport::TestCase
|
|
def render_content(start, inside)
|
|
template = block_helper(start, inside)
|
|
ActionView::Template::Handlers::Erubis.new(template).evaluate(ViewContext.new)
|
|
end
|
|
|
|
def block_helper(str, rest)
|
|
"<%= #{str} do %>#{rest}<% end %>"
|
|
end
|
|
end
|
|
end |