summaryrefslogtreecommitdiff
path: root/t/t7004-tag.sh
diff options
context:
space:
mode:
authorMike Hommey <mh@glandium.org>2007-11-04 00:11:15 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-06 06:47:43 (GMT)
commit4d8b1dc850bafdf2304a525a768fbfc7aa5361ae (patch)
tree508e2a736a6d68f62df06ebb5cdbada5c6faba22 /t/t7004-tag.sh
parentbab8118aff7581364eb5c74472fe7ab4f45f4a12 (diff)
downloadgit-4d8b1dc850bafdf2304a525a768fbfc7aa5361ae.zip
git-4d8b1dc850bafdf2304a525a768fbfc7aa5361ae.tar.gz
git-4d8b1dc850bafdf2304a525a768fbfc7aa5361ae.tar.bz2
Add tests for git tag
These tests check whether git-tag properly sends a comment into the editor, and whether it reuses previous annotation when overwriting an existing tag. Signed-off-by: Mike Hommey <mh@glandium.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7004-tag.sh')
-rwxr-xr-xt/t7004-tag.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh
index 0d07bc3..096fe33 100755
--- a/t/t7004-tag.sh
+++ b/t/t7004-tag.sh
@@ -1004,4 +1004,20 @@ test_expect_failure \
'verify signed tag fails when public key is not present' \
'git-tag -v signed-tag'
+test_expect_success \
+ 'message in editor has initial comment' '
+ GIT_EDITOR=cat git tag -a initial-comment > actual || true &&
+ test $(sed -n "/^\(#\|\$\)/p" actual | wc -l) -gt 0
+'
+
+get_tag_header reuse $commit commit $time >expect
+echo "An annotation to be reused" >> expect
+test_expect_success \
+ 'overwriting an annoted tag should use its previous body' '
+ git tag -a -m "An annotation to be reused" reuse &&
+ GIT_EDITOR=true git tag -f -a reuse &&
+ get_tag_msg reuse >actual &&
+ git diff expect actual
+'
+
test_done