diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-09-13 15:34:17 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-09-13 15:34:17 -0500 |
commit | 48c81f52d41879827ca4a84deaaf4459d290c85b (patch) | |
tree | d02d2e6a6e3e13c4a52be496a7256a7d17d38d03 /actionpack | |
parent | a01bf41c61077a7b08371dec4206c84c05110f28 (diff) | |
download | rails-48c81f52d41879827ca4a84deaaf4459d290c85b.tar.gz rails-48c81f52d41879827ca4a84deaaf4459d290c85b.tar.bz2 rails-48c81f52d41879827ca4a84deaaf4459d290c85b.zip |
Remove dead old base abstract unit
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/old_base/abstract_unit.rb | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/actionpack/test/old_base/abstract_unit.rb b/actionpack/test/old_base/abstract_unit.rb deleted file mode 100644 index b80050bd48..0000000000 --- a/actionpack/test/old_base/abstract_unit.rb +++ /dev/null @@ -1,46 +0,0 @@ -if ENV['new_base'] - puts *caller - raise 'new_base/abstract_unit already loaded' -end -$:.unshift(File.dirname(__FILE__) + '/../lib') -$:.unshift(File.dirname(__FILE__) + '/../../activesupport/lib') -$:.unshift(File.dirname(__FILE__) + '/fixtures/helpers') -$:.unshift(File.dirname(__FILE__) + '/fixtures/alternate_helpers') - -require 'rubygems' -gem "rack", "~> 1.0.0" -gem "rack-test", "~> 0.4.2" - -require 'yaml' -require 'stringio' -require 'test/unit' - -begin - require 'ruby-debug' - Debugger.settings[:autoeval] = true - Debugger.start -rescue LoadError - # Debugging disabled. `gem install ruby-debug` to enable. -end - -require 'action_controller' -require 'action_controller/testing/process' -require 'action_view/test_case' - -$tags[:old_base] = true - -# Show backtraces for deprecated behavior for quicker cleanup. -ActiveSupport::Deprecation.debug = true - -ActionController::Base.logger = nil -ActionController::Routing::Routes.reload rescue nil - -ActionController::Base.session_store = nil - -# Register danish language for testing -I18n.backend.store_translations 'da', {} -I18n.backend.store_translations 'pt-BR', {} -ORIGINAL_LOCALES = I18n.available_locales.map {|locale| locale.to_s }.sort - -FIXTURE_LOAD_PATH = File.join(File.dirname(__FILE__), 'fixtures') -ActionController::Base.view_paths = FIXTURE_LOAD_PATH |