summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2011-08-16 12:41:14 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2011-08-16 12:41:14 -0700
commit1f2705e20fa5f2d3c93663296eef723f45d1fa41 (patch)
treeb8dcaa8a4a860c640058401b51ced3abbcba2630 /t
parentMerge branch 'jl/submodule-update-quiet' into maint (diff)
parenttag: accept multiple patterns for --list (diff)
downloadtgif-1f2705e20fa5f2d3c93663296eef723f45d1fa41.tar.xz
Merge branch 'jk/tag-list-multiple-patterns' into maint
* 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 \