From 2def5b6314e1fbbaa789d1311e488ffac498703d Mon Sep 17 00:00:00 2001 From: madlep Date: Sat, 4 Oct 2008 18:13:14 +1000 Subject: Fixed load path for actionmailer and activesupport tests to always load from local lib files. [#983 state:committed] Signed-off-by: Jeremy Kemper --- actionmailer/test/abstract_unit.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'actionmailer/test') diff --git a/actionmailer/test/abstract_unit.rb b/actionmailer/test/abstract_unit.rb index 107b2e8bbe..905f25c9f7 100644 --- a/actionmailer/test/abstract_unit.rb +++ b/actionmailer/test/abstract_unit.rb @@ -1,6 +1,8 @@ require 'test/unit' $:.unshift "#{File.dirname(__FILE__)}/../lib" +$:.unshift "#{File.dirname(__FILE__)}/../../activesupport/lib" +$:.unshift "#{File.dirname(__FILE__)}/../../actionpack/lib" require 'action_mailer' require 'action_mailer/test_case' -- cgit v1.2.3