Skip to content

Commit

Permalink
t6018: add tests for rev-list's --branches and --tags
Browse files Browse the repository at this point in the history
so that we know when they break.

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 Jun 27, 2010
1 parent f526d12 commit 9332441
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions t/t6018-rev-list-glob.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,13 @@ test_expect_success 'rev-list --branches=subspace' '
compare rev-list "subspace/one subspace/two" "--branches=subspace"
'

test_expect_success 'rev-list --branches' '
compare rev-list "master subspace-x someref other/three subspace/one subspace/two" "--branches"
'

test_expect_success 'rev-list --glob=heads/someref/* master' '
compare rev-list "master" "--glob=heads/someref/* master"
Expand All @@ -186,6 +193,12 @@ test_expect_success 'rev-list --tags=foo' '
'

test_expect_success 'rev-list --tags' '
compare rev-list "foo/bar" "--tags"
'

test_expect_success 'rev-list --remotes=foo' '
compare rev-list "foo/baz" "--remotes=foo"
Expand Down

0 comments on commit 9332441

Please sign in to comment.