From 3b98b685163be795e3156ce75d5083689c137dd8 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Tue, 25 Sep 2007 08:51:06 +0000 Subject: Doof. Don't call it with false if it doesn't respond. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7628 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/lib/console_app.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'railties/lib/console_app.rb') diff --git a/railties/lib/console_app.rb b/railties/lib/console_app.rb index 0030b2bb3a..eaf02234ea 100644 --- a/railties/lib/console_app.rb +++ b/railties/lib/console_app.rb @@ -1,7 +1,7 @@ require 'action_controller/integration' # work around the at_exit hook in test/unit, which kills IRB -Test::Unit.run = Test::Unit.respond_to?(:run=) +Test::Unit.run = true if Test::Unit.respond_to?(:run=) # reference the global "app" instance, created on demand. To recreate the # instance, pass a non-false value as the parameter. -- cgit v1.2.3