1#!/bin/sh23test_description='git annotate'4. ./test-lib.sh56PROG='git annotate'7. "$TEST_DIRECTORY"/annotate-tests.sh89test_expect_success \10'Annotating an old revision works' \11'[ $(git annotate file master | awk "{print \$3}" | grep -c "^A$") -eq 2 ] && \12[ $(git annotate file master | awk "{print \$3}" | grep -c "^B$") -eq 2 ]'131415test_done