1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Always add actionpack/lib to load path for isolated tests

This commit is contained in:
Joshua Peek 2009-10-21 11:32:31 -05:00
parent 9fbb2c571b
commit 3e35d30c0c

View file

@ -4,9 +4,9 @@ begin
rescue LoadError
$:.unshift "#{root}/activesupport/lib"
$:.unshift "#{root}/activemodel/lib"
$:.unshift "#{root}/lib"
end
$:.unshift(File.dirname(__FILE__) + '/../lib')
$:.unshift(File.dirname(__FILE__) + '/lib')
$:.unshift(File.dirname(__FILE__) + '/fixtures/helpers')
$:.unshift(File.dirname(__FILE__) + '/fixtures/alternate_helpers')