From: Toshi MARUYAMA Date: Fri, 10 Jun 2011 12:53:41 +0000 (+0000) Subject: scm: cvs: replace RAILS_ROOT to Rails.root in unit model test. X-Git-Tag: 1.3.0~1827 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ee2418f07618d2d5914f109a06611cc1ee022c27;p=redmine.git scm: cvs: replace RAILS_ROOT to Rails.root in unit model test. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6060 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/unit/repository_cvs_test.rb b/test/unit/repository_cvs_test.rb index 2d475d655..d10e99a25 100644 --- a/test/unit/repository_cvs_test.rb +++ b/test/unit/repository_cvs_test.rb @@ -20,8 +20,7 @@ require 'pp' class RepositoryCvsTest < ActiveSupport::TestCase fixtures :projects - # No '..' in the repository path - REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/cvs_repository' + REPOSITORY_PATH = Rails.root.join('tmp/test/cvs_repository').to_s REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin? # CVS module MODULE_NAME = 'test'