remove unneeded Relation#all from RepositoryCvsTest

git-svn-id: http://svn.redmine.org/redmine/trunk@12574 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-01-09 09:54:37 +00:00
parent 890851eb85
commit 4ab85ff0cb
1 changed files with 4 additions and 3 deletions

View File

@ -116,11 +116,11 @@ class RepositoryCvsTest < ActiveSupport::TestCase
assert_equal CHANGESETS_NUM, @repository.changesets.count
# Remove changesets with revision > 3
@repository.changesets.all.each {|c| c.destroy if c.revision.to_i > 3}
@repository.changesets.each {|c| c.destroy if c.revision.to_i > 3}
@project.reload
@repository.reload
assert_equal 3, @repository.changesets.count
assert_equal %w|3 2 1|, @repository.changesets.all.collect(&:revision)
assert_equal %w|3 2 1|, @repository.changesets.collect(&:revision)
rev3_commit = @repository.changesets.reorder('committed_on DESC').first
assert_equal '3', rev3_commit.revision
@ -133,8 +133,9 @@ class RepositoryCvsTest < ActiveSupport::TestCase
@repository.fetch_changesets
@project.reload
@repository.reload
assert_equal CHANGESETS_NUM, @repository.changesets.count
assert_equal %w|7 6 5 4 3 2 1|, @repository.changesets.all.collect(&:revision)
assert_equal %w|7 6 5 4 3 2 1|, @repository.changesets.collect(&:revision)
rev5_commit = @repository.changesets.find_by_revision('5')
assert_equal 'HEAD-20071213-163001', rev5_commit.scmid
# 2007-12-14 01:30:01 +0900