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