scm: cvs: add test annotate with revision in unit model test.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5413 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-04-11 15:46:07 +00:00
parent e9a33eff14
commit 0b68a74fc7
1 changed files with 7 additions and 0 deletions

View File

@ -141,6 +141,13 @@ class RepositoryCvsTest < ActiveSupport::TestCase
assert_equal '1.2', ann.revisions[1].revision
assert_equal 'LANG', ann.revisions[1].author
assert_equal 'with one change', ann.lines[1]
ann = @repository.annotate('README', '1')
assert ann
assert_equal 1, ann.revisions.length
assert_equal '1.1', ann.revisions[0].revision
assert_equal 'LANG', ann.revisions[0].author
assert_equal 'CVS test repository', ann.lines[0]
end
else