1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-19 13:39:04 +02:00
git/t/t8001-annotate.sh
Junio C Hamano 5be60078c9 Rewrite "git-frotz" to "git frotz"
This uses the remove-dashes target to replace "git-frotz" to "git frotz".

Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-02 22:52:14 -07:00

16 lines
343 B
Bash
Executable File

#!/bin/sh
test_description='git annotate'
. ./test-lib.sh
PROG='git annotate'
. ../annotate-tests.sh
test_expect_success \
'Annotating an old revision works' \
'[ $(git annotate file master | awk "{print \$3}" | grep -c "^A$") -eq 2 ] && \
[ $(git annotate file master | awk "{print \$3}" | grep -c "^B$") -eq 2 ]'
test_done