diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-07-19 09:45:15 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-07-19 09:45:15 -0700 |
commit | 20a80d04a4835dfec2823570719f17b6892e4841 (patch) | |
tree | eec519fc32b7e85bb6949a79a47d748f94436f20 /t | |
parent | eb4f4076aa89d38221ee513a5f28f22124029c90 (diff) | |
parent | 588d0e834b244565863fa80e6c48c20e0db9b62f (diff) | |
download | git-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-x | t/t7004-tag.sh | 5 |
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 \ |