1#!/bin/sh
23
test_description='git annotate'
4. ./test-lib.sh
56
PROG='git annotate'
7. "$TEST_DIRECTORY"/annotate-tests.sh
89
test_expect_success 'annotate old revision' '
10git annotate file master >actual &&
11awk "{ print \$3; }" <actual >authors &&
12test 2 = $(grep A <authors | wc -l) &&
13test 2 = $(grep B <authors | wc -l)
14'
1516
test_done