aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/abstract_controller/test_helper.rb
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-03-03 16:42:20 -0800
committerYehuda Katz <wycats@gmail.com>2009-03-03 16:42:20 -0800
commit6001cea5d70344d4c13b5cff94ee853f5f5462ce (patch)
tree10fb155f964c040c9f88e471570d2b99fe024e4c /actionpack/test/abstract_controller/test_helper.rb
parentcde9aab8238c9acccc0ecc3efc988d752d4cc940 (diff)
downloadrails-6001cea5d70344d4c13b5cff94ee853f5f5462ce.tar.gz
rails-6001cea5d70344d4c13b5cff94ee853f5f5462ce.tar.bz2
rails-6001cea5d70344d4c13b5cff94ee853f5f5462ce.zip
Helpers with an initial test
Diffstat (limited to 'actionpack/test/abstract_controller/test_helper.rb')
-rw-r--r--actionpack/test/abstract_controller/test_helper.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/actionpack/test/abstract_controller/test_helper.rb b/actionpack/test/abstract_controller/test_helper.rb
new file mode 100644
index 0000000000..9f94baea35
--- /dev/null
+++ b/actionpack/test/abstract_controller/test_helper.rb
@@ -0,0 +1,22 @@
+$:.unshift(File.dirname(__FILE__) + '/../../lib')
+$:.unshift(File.dirname(__FILE__) + '/../../../activesupport/lib')
+
+require 'test/unit'
+require 'active_support'
+require 'active_support/test_case'
+require 'action_controller'
+require 'action_view/base'
+
+begin
+ require 'ruby-debug'
+ Debugger.settings[:autoeval] = true
+ Debugger.start
+rescue LoadError
+ # Debugging disabled. `gem install ruby-debug` to enable.
+end
+
+require 'action_controller/abstract/base'
+require 'action_controller/abstract/renderer'
+require 'action_controller/abstract/layouts'
+require 'action_controller/abstract/callbacks'
+require 'action_controller/abstract/helpers' \ No newline at end of file