scm: mercurial: add test of latest changesets support named branch in unit model test (#7246).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5128 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-03-14 13:41:28 +00:00 committed by Eric Davis
parent 4362623282
commit 2fe311d0df
1 changed files with 7 additions and 0 deletions

View File

@ -149,6 +149,13 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
changesets = @repository.latest_changesets('sources', 'tag_test.00', 2)
assert_equal %w|4 3|, changesets.collect(&:revision)
# named branch
changesets = @repository.latest_changesets('', @branch_char_1)
assert_equal %w|27 26|, changesets.collect(&:revision)
changesets = @repository.latest_changesets("latin-1-dir/test-#{@char_1}-subdir", @branch_char_1)
assert_equal %w|27|, changesets.collect(&:revision)
end
def test_copied_files