From 14c378cc7fd364ea5d96e13746345a29341cd845 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Wed, 15 Jun 2005 13:20:17 +0000 Subject: render(:template) applies a layout by default. render("foo/bar") works with a layout again. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1424 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/render_test.rb | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'actionpack/test/controller/render_test.rb') diff --git a/actionpack/test/controller/render_test.rb b/actionpack/test/controller/render_test.rb index 98d279055d..2dab50c9df 100644 --- a/actionpack/test/controller/render_test.rb +++ b/actionpack/test/controller/render_test.rb @@ -88,20 +88,6 @@ end TestController.template_root = File.dirname(__FILE__) + "/../fixtures/" Fun::GamesController.template_root = File.dirname(__FILE__) + "/../fixtures/" -class TestLayoutController < ActionController::Base - layout "layouts/standard" - - def hello_world - end - - def hello_world_outside_layout - end - - def rescue_action(e) - raise unless ActionController::MissingTemplate === e - end -end - class RenderTest < Test::Unit::TestCase def setup @request = ActionController::TestRequest.new -- cgit v1.2.3