scm: darcs: change project id of unit app test from 1 to 3.

Project id 1 has Subversion fixtures.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4978 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-03-01 07:12:56 +00:00
parent 089c23f228
commit 984283dde9
1 changed files with 11 additions and 8 deletions

View File

@ -19,25 +19,26 @@ require File.expand_path('../../test_helper', __FILE__)
class RepositoryDarcsTest < ActiveSupport::TestCase class RepositoryDarcsTest < ActiveSupport::TestCase
fixtures :projects fixtures :projects
# No '..' in the repository path # No '..' in the repository path
REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/darcs_repository' REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/darcs_repository'
def setup def setup
@project = Project.find(1) @project = Project.find(3)
assert @repository = Repository::Darcs.create(:project => @project, :url => REPOSITORY_PATH) @repository = Repository::Darcs.create(:project => @project, :url => REPOSITORY_PATH)
assert @repository
end end
if File.directory?(REPOSITORY_PATH) if File.directory?(REPOSITORY_PATH)
def test_fetch_changesets_from_scratch def test_fetch_changesets_from_scratch
@repository.fetch_changesets @repository.fetch_changesets
@repository.reload @repository.reload
assert_equal 6, @repository.changesets.count assert_equal 6, @repository.changesets.count
assert_equal 13, @repository.changes.count assert_equal 13, @repository.changes.count
assert_equal "Initial commit.", @repository.changesets.find_by_revision('1').comments assert_equal "Initial commit.", @repository.changesets.find_by_revision('1').comments
end end
def test_fetch_changesets_incremental def test_fetch_changesets_incremental
@repository.fetch_changesets @repository.fetch_changesets
# Remove changesets with revision > 3 # Remove changesets with revision > 3
@ -48,8 +49,10 @@ class RepositoryDarcsTest < ActiveSupport::TestCase
@repository.fetch_changesets @repository.fetch_changesets
assert_equal 6, @repository.changesets.count assert_equal 6, @repository.changesets.count
end end
def test_deleted_files_should_not_be_listed def test_deleted_files_should_not_be_listed
@repository.fetch_changesets
@repository.reload
entries = @repository.entries('sources') entries = @repository.entries('sources')
assert entries.detect {|e| e.name == 'watchers_controller.rb'} assert entries.detect {|e| e.name == 'watchers_controller.rb'}
assert_nil entries.detect {|e| e.name == 'welcome_controller.rb'} assert_nil entries.detect {|e| e.name == 'welcome_controller.rb'}