diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-08-25 11:01:37 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-08-25 11:01:37 +0000 |
commit | 116091a1d2ea1e4fd5c4838760d11beab2d5cea3 (patch) | |
tree | 6b1bbba99f126bf854c12083ea5a21c970f7a7ae /test | |
parent | 2f3f2d8b12483b72f78f7f4704d8641451b16832 (diff) | |
download | redmine-116091a1d2ea1e4fd5c4838760d11beab2d5cea3.tar.gz redmine-116091a1d2ea1e4fd5c4838760d11beab2d5cea3.zip |
Fixes platform determination under JRuby (#1804).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1753 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/repositories_cvs_controller_test.rb | 2 | ||||
-rw-r--r-- | test/functional/repositories_git_controller_test.rb | 2 | ||||
-rw-r--r-- | test/unit/repository_cvs_test.rb | 2 | ||||
-rw-r--r-- | test/unit/repository_git_test.rb | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/repositories_cvs_controller_test.rb b/test/functional/repositories_cvs_controller_test.rb index 254fbc69c..2207d6ab6 100644 --- a/test/functional/repositories_cvs_controller_test.rb +++ b/test/functional/repositories_cvs_controller_test.rb @@ -25,7 +25,7 @@ class RepositoriesCvsControllerTest < Test::Unit::TestCase # No '..' in the repository path REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/cvs_repository' - REPOSITORY_PATH.gsub!(/\//, "\\") if RUBY_PLATFORM =~ /mswin/ + REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin? # CVS module MODULE_NAME = 'test' diff --git a/test/functional/repositories_git_controller_test.rb b/test/functional/repositories_git_controller_test.rb index 339e22897..201a50677 100644 --- a/test/functional/repositories_git_controller_test.rb +++ b/test/functional/repositories_git_controller_test.rb @@ -26,7 +26,7 @@ class RepositoriesGitControllerTest < Test::Unit::TestCase # No '..' in the repository path REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/git_repository' - REPOSITORY_PATH.gsub!(/\//, "\\") if RUBY_PLATFORM =~ /mswin/ + REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin? def setup @controller = RepositoriesController.new diff --git a/test/unit/repository_cvs_test.rb b/test/unit/repository_cvs_test.rb index b14d9d964..6615f73bf 100644 --- a/test/unit/repository_cvs_test.rb +++ b/test/unit/repository_cvs_test.rb @@ -22,7 +22,7 @@ class RepositoryCvsTest < Test::Unit::TestCase # No '..' in the repository path REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/cvs_repository' - REPOSITORY_PATH.gsub!(/\//, "\\") if RUBY_PLATFORM =~ /mswin/ + REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin? # CVS module MODULE_NAME = 'test' diff --git a/test/unit/repository_git_test.rb b/test/unit/repository_git_test.rb index c7bd84a6e..8a6f1ddd0 100644 --- a/test/unit/repository_git_test.rb +++ b/test/unit/repository_git_test.rb @@ -22,7 +22,7 @@ class RepositoryGitTest < Test::Unit::TestCase # No '..' in the repository path REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/git_repository' - REPOSITORY_PATH.gsub!(/\//, "\\") if RUBY_PLATFORM =~ /mswin/ + REPOSITORY_PATH.gsub!(/\//, "\\") if Redmine::Platform.mswin? def setup @project = Project.find(1) |