Code

t6018: add tests for rev-list's --branches and --tags
authorMichael J Gruber <git@drmicha.warpmail.net>
Fri, 14 May 2010 18:26:50 +0000 (20:26 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 27 Jun 2010 18:32:43 +0000 (11:32 -0700)
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>
t/t6018-rev-list-glob.sh

index 8d3fa7d014c1e5a856f6c4c35cfb46eb8c44e684..dbedc4dfa64598f495edd83ae07a0c5da895ae32 100755 (executable)
@@ -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"
@@ -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"