43 lines
1.1 KiB
Ruby
43 lines
1.1 KiB
Ruby
require File.expand_path('../../../../../../test_helper', __FILE__)
|
|
begin
|
|
require 'mocha'
|
|
|
|
class CvsAdapterTest < ActiveSupport::TestCase
|
|
|
|
REPOSITORY_PATH = RAILS_ROOT.gsub(%r{config\/\.\.}, '') + '/tmp/test/cvs_repository'
|
|
MODULE_NAME = 'test'
|
|
|
|
if File.directory?(REPOSITORY_PATH)
|
|
def setup
|
|
@adapter = Redmine::Scm::Adapters::CvsAdapter.new(MODULE_NAME, REPOSITORY_PATH)
|
|
end
|
|
|
|
def test_revisions_all
|
|
cnt = 0
|
|
@adapter.revisions('', nil, nil, :with_paths => true) do |revision|
|
|
cnt += 1
|
|
end
|
|
assert_equal 14, cnt
|
|
end
|
|
|
|
def test_revisions_from_rev3
|
|
rev3_committed_on = Time.gm(2007, 12, 13, 16, 27, 22)
|
|
cnt = 0
|
|
@adapter.revisions('', rev3_committed_on, nil, :with_paths => true) do |revision|
|
|
cnt += 1
|
|
end
|
|
assert_equal 2, cnt
|
|
end
|
|
else
|
|
puts "Cvs test repository NOT FOUND. Skipping unit tests !!!"
|
|
def test_fake; assert true end
|
|
end
|
|
end
|
|
|
|
rescue LoadError
|
|
class CvsMochaFake < ActiveSupport::TestCase
|
|
def test_fake; assert(false, "Requires mocha to run those tests") end
|
|
end
|
|
end
|
|
|