Merged r12929 from trunk to 2.4-stable (#16177)
scm: mercurial: add one "closed" branch to test repository. git-svn-id: http://svn.redmine.org/redmine/branches/2.4-stable@12933 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
dc431edbc8
commit
5e031bce47
Binary file not shown.
|
@ -26,7 +26,7 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
|
|||
REPOSITORY_PATH = Rails.root.join('tmp/test/mercurial_repository').to_s
|
||||
CHAR_1_HEX = "\xc3\x9c"
|
||||
PRJ_ID = 3
|
||||
NUM_REV = 32
|
||||
NUM_REV = 34
|
||||
|
||||
ruby19_non_utf8_pass =
|
||||
(RUBY_VERSION >= '1.9' && Encoding.default_external.to_s != 'UTF-8')
|
||||
|
|
|
@ -89,8 +89,8 @@ begin
|
|||
adp = Redmine::Scm::Adapters::MercurialAdapter.new(repo)
|
||||
repo_path = adp.info.root_url.gsub(/\\/, "/")
|
||||
assert_equal REPOSITORY_PATH, repo_path
|
||||
assert_equal '31', adp.info.lastrev.revision
|
||||
assert_equal '31eeee7395c8',adp.info.lastrev.scmid
|
||||
assert_equal '33', adp.info.lastrev.revision
|
||||
assert_equal '2e6d54642923',adp.info.lastrev.scmid
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
|
|||
include Redmine::I18n
|
||||
|
||||
REPOSITORY_PATH = Rails.root.join('tmp/test/mercurial_repository').to_s
|
||||
NUM_REV = 32
|
||||
NUM_REV = 34
|
||||
CHAR_1_HEX = "\xc3\x9c"
|
||||
|
||||
def setup
|
||||
|
@ -144,7 +144,7 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
|
|||
|
||||
# with_limit
|
||||
changesets = @repository.latest_changesets('', nil, 2)
|
||||
assert_equal %w|31 30|, changesets.collect(&:revision)
|
||||
assert_equal ["#{NUM_REV - 1}", "#{NUM_REV - 2}"], changesets.collect(&:revision)
|
||||
|
||||
# with_filepath
|
||||
changesets = @repository.latest_changesets(
|
||||
|
@ -365,7 +365,7 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
|
|||
@repository.fetch_changesets
|
||||
@project.reload
|
||||
assert_equal NUM_REV, @repository.changesets.count
|
||||
%w|31 31eeee7395c8 31eee|.each do |r1|
|
||||
["#{NUM_REV - 1}", "2e6d54642923", "2e6d5"].each do |r1|
|
||||
changeset = @repository.find_changeset_by_name(r1)
|
||||
assert_nil changeset.next
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue