summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-07-19 09:45:15 -0700
committerJunio C Hamano <gitster@pobox.com>2011-07-19 09:45:15 -0700
commit20a80d04a4835dfec2823570719f17b6892e4841 (patch)
treeeec519fc32b7e85bb6949a79a47d748f94436f20 /t
parenteb4f4076aa89d38221ee513a5f28f22124029c90 (diff)
parent588d0e834b244565863fa80e6c48c20e0db9b62f (diff)
downloadgit-20a80d04a4835dfec2823570719f17b6892e4841.tar.gz
Merge branch 'jk/tag-list-multiple-patterns'
* jk/tag-list-multiple-patterns: tag: accept multiple patterns for --list
Diffstat (limited to 't')
-rwxr-xr-xt/t7004-tag.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh
index 2ac1c66079..097ce2bc83 100755
--- a/t/t7004-tag.sh
+++ b/t/t7004-tag.sh
@@ -257,6 +257,11 @@ test_expect_success \
test_cmp expect actual
'
+test_expect_success 'tag -l can accept multiple patterns' '
+ git tag -l "v1*" "v0*" >actual &&
+ test_cmp expect actual
+'
+
# creating and verifying lightweight tags:
test_expect_success \