scm: mercurial: cleanup indent and trailing white-space of unit lib test.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4632 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
0f8680adfd
commit
6ad68ae027
|
@ -1,16 +1,16 @@
|
||||||
require File.expand_path('../../../../../../test_helper', __FILE__)
|
require File.expand_path('../../../../../../test_helper', __FILE__)
|
||||||
begin
|
begin
|
||||||
require 'mocha'
|
require 'mocha'
|
||||||
|
|
||||||
class MercurialAdapterTest < ActiveSupport::TestCase
|
class MercurialAdapterTest < ActiveSupport::TestCase
|
||||||
|
|
||||||
TEMPLATES_DIR = Redmine::Scm::Adapters::MercurialAdapter::TEMPLATES_DIR
|
TEMPLATES_DIR = Redmine::Scm::Adapters::MercurialAdapter::TEMPLATES_DIR
|
||||||
TEMPLATE_NAME = Redmine::Scm::Adapters::MercurialAdapter::TEMPLATE_NAME
|
TEMPLATE_NAME = Redmine::Scm::Adapters::MercurialAdapter::TEMPLATE_NAME
|
||||||
TEMPLATE_EXTENSION = Redmine::Scm::Adapters::MercurialAdapter::TEMPLATE_EXTENSION
|
TEMPLATE_EXTENSION = Redmine::Scm::Adapters::MercurialAdapter::TEMPLATE_EXTENSION
|
||||||
|
|
||||||
REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/mercurial_repository'
|
REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/mercurial_repository'
|
||||||
|
|
||||||
if File.directory?(REPOSITORY_PATH)
|
if File.directory?(REPOSITORY_PATH)
|
||||||
def setup
|
def setup
|
||||||
@adapter = Redmine::Scm::Adapters::MercurialAdapter.new(REPOSITORY_PATH)
|
@adapter = Redmine::Scm::Adapters::MercurialAdapter.new(REPOSITORY_PATH)
|
||||||
end
|
end
|
||||||
|
@ -22,8 +22,8 @@ begin
|
||||||
"Mercurial Distributed SCM (1.0.1+20080525)\n" => [1,0,1],
|
"Mercurial Distributed SCM (1.0.1+20080525)\n" => [1,0,1],
|
||||||
"Mercurial Distributed SCM (1916e629a29d)\n" => nil,
|
"Mercurial Distributed SCM (1916e629a29d)\n" => nil,
|
||||||
"Mercurial SCM Distribuito (versione 0.9.5)\n" => [0,9,5],
|
"Mercurial SCM Distribuito (versione 0.9.5)\n" => [0,9,5],
|
||||||
"(1.6)\n(1.7)\n(1.8)" => [1,6],
|
"(1.6)\n(1.7)\n(1.8)" => [1,6],
|
||||||
"(1.7.1)\r\n(1.8.1)\r\n(1.9.1)" => [1,7,1]}
|
"(1.7.1)\r\n(1.8.1)\r\n(1.9.1)" => [1,7,1]}
|
||||||
|
|
||||||
to_test.each do |s, v|
|
to_test.each do |s, v|
|
||||||
test_hgversion_for(s, v)
|
test_hgversion_for(s, v)
|
||||||
|
@ -31,12 +31,12 @@ begin
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_template_path
|
def test_template_path
|
||||||
to_test = { [0,9,5] => "0.9.5",
|
to_test = { [0,9,5] => "0.9.5",
|
||||||
[1,0] => "1.0",
|
[1,0] => "1.0",
|
||||||
[] => "1.0",
|
[] => "1.0",
|
||||||
[1,0,1] => "1.0",
|
[1,0,1] => "1.0",
|
||||||
[1,7] => "1.0",
|
[1,7] => "1.0",
|
||||||
[1,7,1] => "1.0"}
|
[1,7,1] => "1.0" }
|
||||||
to_test.each do |v, template|
|
to_test.each do |v, template|
|
||||||
test_template_path_for(v, template)
|
test_template_path_for(v, template)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue