scm: cvs: add fetch_changesets at all unit app test methods.

Redmine generates pseudo revision number, so all tests need to read database.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4791 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-02-02 10:00:20 +00:00 committed by Eric Davis
parent 6d649a6f84
commit b7e38791f2
1 changed files with 7 additions and 0 deletions

View File

@ -35,6 +35,7 @@ class RepositoryCvsTest < ActiveSupport::TestCase
if File.directory?(REPOSITORY_PATH)
def test_fetch_changesets_from_scratch
assert_equal 0, @repository.changesets.count
@repository.fetch_changesets
@repository.reload
@ -44,6 +45,7 @@ class RepositoryCvsTest < ActiveSupport::TestCase
end
def test_fetch_changesets_incremental
assert_equal 0, @repository.changesets.count
@repository.fetch_changesets
# Remove the 3 latest changesets
@repository.changesets.find(:all, :order => 'committed_on DESC', :limit => 3).each(&:destroy)
@ -55,6 +57,11 @@ class RepositoryCvsTest < ActiveSupport::TestCase
end
def test_deleted_files_should_not_be_listed
assert_equal 0, @repository.changesets.count
@repository.fetch_changesets
@repository.reload
assert_equal 5, @repository.changesets.count
entries = @repository.entries('sources')
assert entries.detect {|e| e.name == 'watchers_controller.rb'}
assert_nil entries.detect {|e| e.name == 'welcome_controller.rb'}