scm: bazaar: separate constant repository path to repository and trunk branch at unit model test

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10388 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-09-16 06:13:23 +00:00
parent ee0fc2e1d5
commit dd5844b86c
1 changed files with 4 additions and 3 deletions

View File

@ -22,13 +22,14 @@ class RepositoryBazaarTest < ActiveSupport::TestCase
include Redmine::I18n
REPOSITORY_PATH = Rails.root.join('tmp/test/bazaar_repository/trunk').to_s
REPOSITORY_PATH = Rails.root.join('tmp/test/bazaar_repository').to_s
REPOSITORY_PATH_TRUNK = File.join(REPOSITORY_PATH, "trunk")
NUM_REV = 4
def setup
@project = Project.find(3)
@repository = Repository::Bazaar.create(
:project => @project, :url => REPOSITORY_PATH,
:project => @project, :url => REPOSITORY_PATH_TRUNK,
:log_encoding => 'UTF-8')
assert @repository
end
@ -59,7 +60,7 @@ class RepositoryBazaarTest < ActiveSupport::TestCase
assert_include str, repo.errors.full_messages
end
if File.directory?(REPOSITORY_PATH)
if File.directory?(REPOSITORY_PATH_TRUNK)
def test_fetch_changesets_from_scratch
assert_equal 0, @repository.changesets.count
@repository.fetch_changesets