From f8542a64b30bb6f67bcedf0c82de1291aab3c3d9 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Mon, 30 May 2005 09:00:46 +0000 Subject: Make sure the benchmarking render method always returns the result of the render, regardless of whether logging is enabled or not. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1371 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/render_test.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 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 d3051ef6ad..98d279055d 100644 --- a/actionpack/test/controller/render_test.rb +++ b/actionpack/test/controller/render_test.rb @@ -1,6 +1,8 @@ require File.dirname(__FILE__) + '/../abstract_unit' -Customer = Struct.new("Customer", :name) +unless defined?(Customer) + Customer = Struct.new("Customer", :name) +end module Fun class GamesController < ActionController::Base @@ -214,4 +216,4 @@ class RenderTest < Test::Unit::TestCase def process_request TestController.process(@request, @response) end -end \ No newline at end of file +end -- cgit v1.2.3