Commit 2ebb1170 authored by Toshi MARUYAMA's avatar Toshi MARUYAMA Committed by Eric Davis

scm: git: add latin-1 encoding directory to test repository (#5251).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5060 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent f2fa1d49
......@@ -56,7 +56,7 @@ begin
end
def test_getting_all_revisions
assert_equal 20, @adapter.revisions('',nil,nil,:all => true).length
assert_equal 21, @adapter.revisions('',nil,nil,:all => true).length
end
def test_getting_certain_revisions
......
......@@ -46,8 +46,8 @@ class RepositoryGitTest < ActiveSupport::TestCase
@repository.fetch_changesets
@repository.reload
assert_equal 20, @repository.changesets.count
assert_equal 30, @repository.changes.count
assert_equal 21, @repository.changesets.count
assert_equal 33, @repository.changes.count
commit = @repository.changesets.find(:first, :order => 'committed_on ASC')
assert_equal "Initial import.\nThe repository contains 3 files.", commit.comments
......@@ -67,7 +67,7 @@ class RepositoryGitTest < ActiveSupport::TestCase
def test_fetch_changesets_incremental
@repository.fetch_changesets
# Remove the 3 latest changesets
@repository.changesets.find(:all, :order => 'committed_on DESC', :limit => 7).each(&:destroy)
@repository.changesets.find(:all, :order => 'committed_on DESC', :limit => 8).each(&:destroy)
@repository.reload
cs1 = @repository.changesets
assert_equal 13, cs1.count
......@@ -82,7 +82,7 @@ class RepositoryGitTest < ActiveSupport::TestCase
assert_equal rev_a_committed_on, latest_rev.committed_on
@repository.fetch_changesets
assert_equal 20, @repository.changesets.count
assert_equal 21, @repository.changesets.count
end
def test_latest_changesets
......
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