From efcce7fc123b9e64fb9d93224e4e78d09144af3d Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Sat, 10 Nov 2007 15:34:12 -0800 Subject: got clone and init to work - my first writing functions --- tests/test_helper.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/test_helper.rb') diff --git a/tests/test_helper.rb b/tests/test_helper.rb index 03b5f8a..cf67576 100644 --- a/tests/test_helper.rb +++ b/tests/test_helper.rb @@ -14,9 +14,9 @@ class Test::Unit::TestCase @test_dir = File.join(cwd, 'tests', 'files') end - @wdir = File.join(@test_dir, 'working') - @wbare = File.join(@test_dir, 'working.git') - @index = File.join(@test_dir, 'index') + @wdir = File.expand_path(File.join(@test_dir, 'working')) + @wbare = File.expand_path(File.join(@test_dir, 'working.git')) + @index = File.expand_path(File.join(@test_dir, 'index')) end def in_temp_dir(remove_after = true) -- cgit