diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-09-26 13:02:34 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-09-26 13:02:34 -0500 |
commit | 71b33ec482404f6e48c651eb868243ed0b6c4175 (patch) | |
tree | e2bdb4dcf2a4f0539c671e890cb2a418a3ff02d4 | |
parent | 0c638b340685b0bd1020bef2cd8a6d221058aa78 (diff) | |
download | rails-71b33ec482404f6e48c651eb868243ed0b6c4175.tar.gz rails-71b33ec482404f6e48c651eb868243ed0b6c4175.tar.bz2 rails-71b33ec482404f6e48c651eb868243ed0b6c4175.zip |
AC::Dispatcher is the default app, don't need to set it
-rw-r--r-- | actionpack/test/abstract_unit.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb index 134883ed19..c54efa308c 100644 --- a/actionpack/test/abstract_unit.rb +++ b/actionpack/test/abstract_unit.rb @@ -69,10 +69,6 @@ class Rack::TestCase < ActionController::IntegrationTest ActionController::Base.session_options[:secret] = ("*" * 30) end - def app - @app ||= ActionController::Dispatcher.new - end - def self.testing(klass = nil) if klass @testing = "/#{klass.name.underscore}".sub!(/_controller$/, '') |