aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2012-08-14 08:48:40 -0700
committerSteve Klabnik <steve@steveklabnik.com>2012-08-14 10:01:06 -0700
commit4c8fba11d7c20f83a6a336772e0e0c230be59688 (patch)
treea5387d1cabeb0c85ef18c0fdee811eaea39575c9 /railties
parentb3641967b8f8a69edd1d1c7d801c0184d35c3af6 (diff)
downloadrails-4c8fba11d7c20f83a6a336772e0e0c230be59688.tar.gz
rails-4c8fba11d7c20f83a6a336772e0e0c230be59688.tar.bz2
rails-4c8fba11d7c20f83a6a336772e0e0c230be59688.zip
We don't need to require AS::TestCase
This was only needed due to https://github.com/rails/rails/blob/6591a10b1f6eccc91bc01ab708050884058e9665/railties/lib/rails/console_app.rb#L6 We don't need that on master. Fixes #6907.
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/console/app.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/railties/lib/rails/console/app.rb b/railties/lib/rails/console/app.rb
index ee8bb55f38..2a69c26deb 100644
--- a/railties/lib/rails/console/app.rb
+++ b/railties/lib/rails/console/app.rb
@@ -1,9 +1,6 @@
require 'active_support/all'
-require 'active_support/test_case'
require 'action_controller'
-# work around the at_exit hook in test/unit, which kills IRB
-
module Rails
module ConsoleMethods
# reference the global "app" instance, created on demand. To recreate the