]> source.dussan.org Git - redmine.git/commitdiff
scm: cvs: add fetch_changesets at all unit app test methods.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 2 Feb 2011 10:00:20 +0000 (10:00 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 2 Feb 2011 10:00:20 +0000 (10:00 +0000)
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

test/unit/repository_cvs_test.rb

index 530ff90126175e86f332fce20cdfa0b93de8f7dd..5e0f9850e8e5abd35186e517e5e3995b3875d442 100644 (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'}