]> git.ipfire.org Git - thirdparty/git.git/blame - t/t8001-annotate.sh
path.c: don't call the match function without value in trie_find()
[thirdparty/git.git] / t / t8001-annotate.sh
CommitLineData
7c3ecb65
RA
1#!/bin/sh
2
5be60078 3test_description='git annotate'
7c3ecb65
RA
4. ./test-lib.sh
5
8752d11d 6PROG='git annotate'
bfdbee98 7. "$TEST_DIRECTORY"/annotate-tests.sh
7c3ecb65 8
e37f39c1
ES
9test_expect_success 'annotate old revision' '
10 git annotate file master >actual &&
11 awk "{ print \$3; }" <actual >authors &&
4b705f40
JH
12 test 2 = $(grep A <authors | wc -l) &&
13 test 2 = $(grep B <authors | wc -l)
14'
f560069b 15
7c3ecb65 16test_done