Revision a4c628d71d43a00acbf42ff5704d9f812babc39d authored by Junio C Hamano on 22 December 2011, 19:27:27 UTC, committed by Junio C Hamano on 22 December 2011, 19:27:27 UTC
* jk/doc-fsck:
  docs: brush up obsolete bits of git-fsck manpage

Conflicts:
	Documentation/git-fsck.txt
2 parent s f35ccd9 + 2830308
Raw File
t8001-annotate.sh
#!/bin/sh

test_description='git annotate'
. ./test-lib.sh

PROG='git annotate'
. "$TEST_DIRECTORY"/annotate-tests.sh

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)
'

test_done
back to top