Commit d67185ec authored by Toshi MARUYAMA's avatar Toshi MARUYAMA

scm: mercurial: use scmid as identifier (#3724).

Contributed by Yuya Nishihara.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4695 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 36b99a4e
......@@ -27,11 +27,22 @@ class Repository::Mercurial < Repository
def scm_adapter
Redmine::Scm::Adapters::MercurialAdapter
end
def self.scm_name
'Mercurial'
end
# Returns the readable identifier for the given mercurial changeset
def self.format_changeset_identifier(changeset)
# "#{changeset.revision}:#{changeset.scmid}"
changeset.revision
end
# Returns the identifier for the given Mercurial changeset
def self.changeset_identifier(changeset)
changeset.scmid
end
def entries(path=nil, identifier=nil)
entries=scm.entries(path, identifier)
if entries
......
......@@ -139,6 +139,13 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
@repository.reload
assert_nil @repository.find_changeset_by_name('100000')
end
def test_identifier
@repository.fetch_changesets
@repository.reload
c = @repository.changesets.find_by_revision('2')
assert_equal c.scmid, c.identifier
end
else
puts "Mercurial test repository NOT FOUND. Skipping unit tests !!!"
def test_fake; assert true end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment