From: Toshi MARUYAMA Date: Fri, 10 Jun 2011 07:06:59 +0000 (+0000) Subject: scm: git: replace RAILS_ROOT to Rails.root in unit model test. X-Git-Tag: 1.3.0~1841 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8ca1d90980f8e8ed7728078826df7fcd7fb3b462;p=redmine.git scm: git: replace RAILS_ROOT to Rails.root in unit model test. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6044 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/unit/repository_git_test.rb b/test/unit/repository_git_test.rb index e85941384..7cdcfbc2b 100644 --- a/test/unit/repository_git_test.rb +++ b/test/unit/repository_git_test.rb @@ -20,8 +20,7 @@ require File.expand_path('../../test_helper', __FILE__) class RepositoryGitTest < ActiveSupport::TestCase fixtures :projects, :repositories, :enabled_modules, :users, :roles - # No '..' in the repository path - REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/git_repository' + REPOSITORY_PATH = Rails.root.join('tmp/test/git_repository').to_s REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin? FELIX_HEX = "Felix Sch\xC3\xA4fer"