2006-03-02 13:23:37 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-07-03 13:52:14 +08:00
|
|
|
test_description='git annotate'
|
2006-03-02 13:23:37 +08:00
|
|
|
. ./test-lib.sh
|
|
|
|
|
2006-03-05 19:13:34 +08:00
|
|
|
PROG='git annotate'
|
2008-08-08 17:26:28 +08:00
|
|
|
. "$TEST_DIRECTORY"/annotate-tests.sh
|
2006-03-02 13:23:37 +08:00
|
|
|
|
2013-07-18 05:25:28 +08:00
|
|
|
test_expect_success 'annotate old revision' '
|
|
|
|
git annotate file master >actual &&
|
|
|
|
awk "{ print \$3; }" <actual >authors &&
|
2011-03-31 03:22:05 +08:00
|
|
|
test 2 = $(grep A <authors | wc -l) &&
|
|
|
|
test 2 = $(grep B <authors | wc -l)
|
|
|
|
'
|
2006-07-04 09:30:01 +08:00
|
|
|
|
2006-03-02 13:23:37 +08:00
|
|
|
test_done
|