Commit 60745d7e authored by Toshi MARUYAMA's avatar Toshi MARUYAMA Committed by Eric Davis

scm: mercurial: add latest changesets supporting tag test in unit model test (#1981).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5126 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 33581f52
......@@ -136,6 +136,19 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
changesets = @repository.latest_changesets(path, '12', 1)
assert_equal %w|12|, changesets.collect(&:revision)
# tag
changesets = @repository.latest_changesets('', 'tag_test.00')
assert_equal %w|5 4 3 2 1 0|, changesets.collect(&:revision)
changesets = @repository.latest_changesets('', 'tag_test.00', 2)
assert_equal %w|5 4|, changesets.collect(&:revision)
changesets = @repository.latest_changesets('sources', 'tag_test.00')
assert_equal %w|4 3 2 1 0|, changesets.collect(&:revision)
changesets = @repository.latest_changesets('sources', 'tag_test.00', 2)
assert_equal %w|4 3|, changesets.collect(&:revision)
end
def test_copied_files
......
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