Skip to content

Commit

Permalink
Merge branch 'mg/rev-parse-tests'
Browse files Browse the repository at this point in the history
* mg/rev-parse-tests:
  t6018: make sure all tested symbolic names are different revs
  t6018: add tests for rev-list's --branches and --tags
  • Loading branch information
Junio C Hamano committed Jun 30, 2010
2 parents e1165dd + 5266347 commit 8b3120d
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion t/t6018-rev-list-glob.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ test_expect_success 'setup' '
git checkout master &&
commit master2 &&
git tag foo/bar master &&
git update-ref refs/remotes/foo/baz master
commit master3 &&
git update-ref refs/remotes/foo/baz master &&
commit master4
'

test_expect_success 'rev-parse --glob=refs/heads/subspace/*' '
Expand Down Expand Up @@ -162,6 +164,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 +195,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 8b3120d

Please sign in to comment.