scm: mercurial: add asserting first and last changeset to test_fetch_changesets_from_scratch (#14361)

git-svn-id: http://svn.redmine.org/redmine/trunk@12776 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-02-02 13:08:50 +00:00
parent f9e7c24733
commit 85f15f694a
1 changed files with 4 additions and 0 deletions

View File

@ -165,6 +165,10 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
assert_equal "Initial import.\nThe repository contains 3 files.",
rev0.comments
assert_equal "0885933ad4f6", rev0.scmid
first_rev = @repository.changesets.first
last_rev = @repository.changesets.last
assert_equal "#{NUM_REV - 1}", first_rev.revision
assert_equal "0", last_rev.revision
end
def test_fetch_changesets_incremental