Rails3: scm: bazaar: fix error of test_fetch_changesets_incremental at unit model test

On Rails 3.1, ActiveRecord::HasManyThroughCantAssociateThroughHasOneOrManyReflection error raises.
For more details, see r7062.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7073 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-09-07 04:04:09 +00:00
parent 56ef96081b
commit 1a99a5a64a
1 changed files with 6 additions and 2 deletions

View File

@ -44,14 +44,18 @@ class RepositoryBazaarTest < ActiveSupport::TestCase
end
def test_fetch_changesets_incremental
assert_equal 0, @repository.changesets.count
@repository.fetch_changesets
@project.reload
assert_equal NUM_REV, @repository.changesets.count
# Remove changesets with revision > 5
@repository.changesets.find(:all).each {|c| c.destroy if c.revision.to_i > 2}
@repository.reload
@project.reload
assert_equal 2, @repository.changesets.count
@repository.fetch_changesets
assert_equal 4, @repository.changesets.count
@project.reload
assert_equal NUM_REV, @repository.changesets.count
end
def test_entries