Skip to content

Commit

Permalink
t6040: test branch -vv
Browse files Browse the repository at this point in the history
t6040 has a test for 'git branch -v' but not for 'git branch -vv'.
Add one.

Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Michael J Gruber authored and Junio C Hamano committed Aug 26, 2011
1 parent b792c06 commit afc1692
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions t/t6040-tracking-info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,22 @@ test_expect_success 'branch -v' '
test_i18ncmp expect actual
'

cat >expect <<\EOF
b1 origin/master: ahead 1, behind 1
b2 origin/master: ahead 1, behind 1
b3 origin/master: behind 1
b4 origin/master: ahead 2
EOF

test_expect_success 'branch -vv' '
(
cd test &&
git branch -vv
) |
sed -n -e "$script" >actual &&
test_i18ncmp expect actual
'

test_expect_success 'checkout' '
(
cd test && git checkout b1
Expand Down

0 comments on commit afc1692

Please sign in to comment.