diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-11-24 09:58:52 -0600 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-11-24 09:58:52 -0600 |
commit | 5ffd1e0c02e605158efc08f3cbb6aebb79978553 (patch) | |
tree | 709110c0f0633f1e3aad5f6de0899c46d83b21be /railties/lib | |
parent | 42b4407e35e8634370fb95dc6786d4fd0c0e6afa (diff) | |
download | rails-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/lib')
-rw-r--r-- | railties/lib/console_app.rb | 3 |
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=) |