From 407761985e5a63b714dcacd55ea7d7442f2e81db Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Fri, 10 Jun 2011 11:11:58 +0000 Subject: [PATCH] scm: filesystem: replace RAILS_ROOT to Rails.root in unit model test. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6054 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/unit/repository_filesystem_test.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/unit/repository_filesystem_test.rb b/test/unit/repository_filesystem_test.rb index 03a6edea4..613ccdaa5 100644 --- a/test/unit/repository_filesystem_test.rb +++ b/test/unit/repository_filesystem_test.rb @@ -20,8 +20,7 @@ require File.expand_path('../../test_helper', __FILE__) class RepositoryFilesystemTest < ActiveSupport::TestCase fixtures :projects - # No '..' in the repository path - REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/filesystem_repository' + REPOSITORY_PATH = Rails.root.join('tmp/test/filesystem_repository').to_s def setup @project = Project.find(3)