git-svn: fix log with single revision against a non-HEAD branch
[git/dscho.git] / t / t8001-annotate.sh
blobeabec2e06e2f97fc1790cd4ce30a80e402d4a205
1 #!/bin/sh
3 test_description='git annotate'
4 . ./test-lib.sh
6 PROG='git annotate'
7 . ../annotate-tests.sh
9 test_expect_success \
10 'Annotating an old revision works' \
11 '[ $(git annotate file master | awk "{print \$3}" | grep -c "^A$") -eq 2 ] && \
12 [ $(git annotate file master | awk "{print \$3}" | grep -c "^B$") -eq 2 ]'
15 test_done