Merge branch 'mg/rev-parse-tests'

* mg/rev-parse-tests:
  t6018: make sure all tested symbolic names are different revs
  t6018: add tests for rev-list's --branches and --tags
maint
Junio C Hamano 2010-06-30 11:55:37 -07:00
commit 8b3120dbaf
1 changed files with 16 additions and 1 deletions

View File

@ -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/*' '
@ -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"
@ -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"