aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/abstract_controller/test_helper.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-09-13 16:30:27 -0500
committerJoshua Peek <josh@joshpeek.com>2009-09-13 16:30:27 -0500
commit6d214c953b74c40d6247dfd2d4526991a0f99f5c (patch)
tree83349dfa5e523a3afa4a6a1f61e6f3a848412f75 /actionpack/test/abstract_controller/test_helper.rb
parent199a423f42c58f3904d75d7a2ab08496bba907c4 (diff)
downloadrails-6d214c953b74c40d6247dfd2d4526991a0f99f5c.tar.gz
rails-6d214c953b74c40d6247dfd2d4526991a0f99f5c.tar.bz2
rails-6d214c953b74c40d6247dfd2d4526991a0f99f5c.zip
Merge abstract_controller/test_helper and new_base/test_helper since they are expected to run in the same testing sandbox
Diffstat (limited to 'actionpack/test/abstract_controller/test_helper.rb')
-rw-r--r--actionpack/test/abstract_controller/test_helper.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/actionpack/test/abstract_controller/test_helper.rb b/actionpack/test/abstract_controller/test_helper.rb
deleted file mode 100644
index 18e4d3c0e5..0000000000
--- a/actionpack/test/abstract_controller/test_helper.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-$:.unshift(File.dirname(__FILE__) + '/../../lib')
-$:.unshift(File.dirname(__FILE__) + '/../../../activesupport/lib')
-$:.unshift(File.dirname(__FILE__) + '/../lib')
-
-bundler = File.join(File.dirname(__FILE__), '..', '..', 'vendor', 'gems', 'environment')
-require bundler if File.exist?("#{bundler}.rb")
-
-require 'rubygems'
-require 'test/unit'
-require 'active_support'
-require 'active_support/test_case'
-require 'abstract_controller'
-require 'action_view'
-require 'action_view/base'
-require 'action_dispatch'
-require 'fixture_template'
-
-begin
- require 'ruby-debug'
- Debugger.settings[:autoeval] = true
- Debugger.start
-rescue LoadError
- # Debugging disabled. `gem install ruby-debug` to enable.
-end