From 14b1dc209d4201021f1e40bca8a18efde3b97065 Mon Sep 17 00:00:00 2001 From: Sebastian Martinez Date: Thu, 18 Mar 2010 13:25:12 -0300 Subject: Fixed require line Signed-off-by: wycats --- activesupport/test/ts_isolated.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activesupport/test/ts_isolated.rb') diff --git a/activesupport/test/ts_isolated.rb b/activesupport/test/ts_isolated.rb index cbab61a523..fc1bbd6e3d 100644 --- a/activesupport/test/ts_isolated.rb +++ b/activesupport/test/ts_isolated.rb @@ -1,6 +1,6 @@ require 'test/unit' require 'rbconfig' -require 'active_support/core_ext/kernel/reporting' +require 'lib/active_support/core_ext/kernel/reporting' class TestIsolated < Test::Unit::TestCase ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME')) -- cgit v1.2.3 From 1e2caa5d52b9f367a1d7dc51d063a7ab1444b712 Mon Sep 17 00:00:00 2001 From: Santiago Pastorino and Sebastian Martinez Date: Thu, 18 Mar 2010 18:59:13 -0300 Subject: Added missing requires abstract_unit and activesupport to the loadpath of ts_isolated [#4215 state:committed] Signed-off-by: wycats --- activesupport/test/ts_isolated.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'activesupport/test/ts_isolated.rb') diff --git a/activesupport/test/ts_isolated.rb b/activesupport/test/ts_isolated.rb index fc1bbd6e3d..58710e0165 100644 --- a/activesupport/test/ts_isolated.rb +++ b/activesupport/test/ts_isolated.rb @@ -1,6 +1,8 @@ +$:.unshift(File.dirname(__FILE__) + '/../../activesupport/lib') + require 'test/unit' require 'rbconfig' -require 'lib/active_support/core_ext/kernel/reporting' +require 'active_support/core_ext/kernel/reporting' class TestIsolated < Test::Unit::TestCase ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME')) -- cgit v1.2.3