remove duplicated self.view_paths assingment on controller tests [#4206 state:commited]

Signed-off-by: wycats <wycats@gmail.com>
This commit is contained in:
Santiago Pastorino 2010-03-17 14:46:21 -03:00 committed by wycats
parent e7276a9f09
commit e629e21135
1 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ module RenderActionWithApplicationLayout
# # ==== Render actions with layouts ==== # # ==== Render actions with layouts ====
class BasicController < ::ApplicationController class BasicController < ::ApplicationController
# Set the view path to an application view structure with layouts # Set the view path to an application view structure with layouts
self.view_paths = self.view_paths = [ActionView::FixtureResolver.new( self.view_paths = [ActionView::FixtureResolver.new(
"render_action_with_application_layout/basic/hello_world.html.erb" => "Hello World!", "render_action_with_application_layout/basic/hello_world.html.erb" => "Hello World!",
"render_action_with_application_layout/basic/hello.html.builder" => "xml.p 'Hello'", "render_action_with_application_layout/basic/hello.html.builder" => "xml.p 'Hello'",
"layouts/application.html.erb" => "Hi <%= yield %> OK, Bye", "layouts/application.html.erb" => "Hi <%= yield %> OK, Bye",
@ -202,7 +202,7 @@ end
module RenderActionWithControllerLayout module RenderActionWithControllerLayout
class BasicController < ActionController::Base class BasicController < ActionController::Base
self.view_paths = self.view_paths = [ActionView::FixtureResolver.new( self.view_paths = [ActionView::FixtureResolver.new(
"render_action_with_controller_layout/basic/hello_world.html.erb" => "Hello World!", "render_action_with_controller_layout/basic/hello_world.html.erb" => "Hello World!",
"layouts/render_action_with_controller_layout/basic.html.erb" => "With Controller Layout! <%= yield %> Bye" "layouts/render_action_with_controller_layout/basic.html.erb" => "With Controller Layout! <%= yield %> Bye"
)] )]