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
This commit is contained in:
Jeremy Kemper 2007-09-25 08:51:06 +00:00
parent 14c1cb4bcb
commit 3b98b68516
1 changed files with 1 additions and 1 deletions

View File

@ -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.