diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-06-06 15:35:30 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-06-06 15:47:26 -0700 |
commit | 517ca8771c15d2ca0d7e15e76ad37e57f6492d2b (patch) | |
tree | cac704a7b2250035e4633b57a340f03feaf0188a /activerecord/test | |
parent | 841d29639b1731a7d0fb844cbd92168b8ae8d84f (diff) | |
download | rails-517ca8771c15d2ca0d7e15e76ad37e57f6492d2b.tar.gz rails-517ca8771c15d2ca0d7e15e76ad37e57f6492d2b.tar.bz2 rails-517ca8771c15d2ca0d7e15e76ad37e57f6492d2b.zip |
do not muck with the load path, that is the test task responsibility
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/helper.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/test/cases/helper.rb b/activerecord/test/cases/helper.rb index 7a214fa75a..110f6b97c6 100644 --- a/activerecord/test/cases/helper.rb +++ b/activerecord/test/cases/helper.rb @@ -1,11 +1,5 @@ require File.expand_path('../../../../load_paths', __FILE__) -test = File.expand_path('../..', __FILE__) -$:.unshift(test) unless $:.include?('test') || $:.include?(test) - -lib = File.expand_path("#{File.dirname(__FILE__)}/../../lib") -$:.unshift(lib) unless $:.include?('lib') || $:.include?(lib) - require 'config' require 'test/unit' |