aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-11-24 09:58:52 -0600
committerJoshua Peek <josh@joshpeek.com>2008-11-24 09:58:52 -0600
commit5ffd1e0c02e605158efc08f3cbb6aebb79978553 (patch)
tree709110c0f0633f1e3aad5f6de0899c46d83b21be /railties
parent42b4407e35e8634370fb95dc6786d4fd0c0e6afa (diff)
downloadrails-5ffd1e0c02e605158efc08f3cbb6aebb79978553.tar.gz
rails-5ffd1e0c02e605158efc08f3cbb6aebb79978553.tar.bz2
rails-5ffd1e0c02e605158efc08f3cbb6aebb79978553.zip
Ensure integration test is load in script/console [#1452 state:resolved]
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/console_app.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/lib/console_app.rb b/railties/lib/console_app.rb
index 88e7962b43..96bf3117c8 100644
--- a/railties/lib/console_app.rb
+++ b/railties/lib/console_app.rb
@@ -1,4 +1,5 @@
-require 'action_controller/integration'
+require 'active_support/test_case'
+require 'action_controller'
# work around the at_exit hook in test/unit, which kills IRB
Test::Unit.run = true if Test::Unit.respond_to?(:run=)