2006-03-01 22:23:37 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='git-annotate'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2006-03-05 04:13:34 -07:00
|
|
|
PROG='git annotate'
|
2006-03-05 23:10:26 -07:00
|
|
|
. ../annotate-tests.sh
|
2006-03-01 22:23:37 -07:00
|
|
|
|
2006-07-03 19:30:01 -06:00
|
|
|
test_expect_success \
|
|
|
|
'Annotating an old revision works' \
|
2006-07-04 02:04:24 -06:00
|
|
|
'[ $(git annotate file master | awk "{print \$3}" | grep -c "^A$") -eq 2 ] && \
|
|
|
|
[ $(git annotate file master | awk "{print \$3}" | grep -c "^B$") -eq 2 ]'
|
2006-07-03 19:30:01 -06:00
|
|
|
|
|
|
|
|
2006-03-01 22:23:37 -07:00
|
|
|
test_done
|