mirror of
https://github.com/github/rails.git
synced 2026-01-31 01:08:19 -05:00
Skip test runner workaround only if Test::Unit is loaded. Closes #9671 [tomafro]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7627 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
require 'action_controller/integration'
|
||||
|
||||
# work around the at_exit hook in test/unit, which kills IRB
|
||||
Test::Unit.run = true
|
||||
Test::Unit.run = 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.
|
||||
|
||||
Reference in New Issue
Block a user