scm: cvs: add annotate test of HEAD revision in unit model test.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5411 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
0a0819f81e
commit
9df194ff16
@ -131,6 +131,18 @@ class RepositoryCvsTest < ActiveSupport::TestCase
|
|||||||
# invalid revision
|
# invalid revision
|
||||||
assert @repository.cat('README', '123').blank?
|
assert @repository.cat('README', '123').blank?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_annotate
|
||||||
|
@repository.fetch_changesets
|
||||||
|
@repository.reload
|
||||||
|
ann = @repository.annotate('README')
|
||||||
|
assert ann
|
||||||
|
assert_equal 2, ann.revisions.length
|
||||||
|
assert_equal '1.2', ann.revisions[1].revision
|
||||||
|
assert_equal 'LANG', ann.revisions[1].author
|
||||||
|
assert_equal 'with one change', ann.lines[1]
|
||||||
|
end
|
||||||
|
|
||||||
else
|
else
|
||||||
puts "CVS test repository NOT FOUND. Skipping unit tests !!!"
|
puts "CVS test repository NOT FOUND. Skipping unit tests !!!"
|
||||||
def test_fake; assert true end
|
def test_fake; assert true end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user