From: Ævar Arnfjörð Bjarmason Date: Sun, 19 Sep 2010 16:32:02 +0000 (+0000) Subject: t7004-tag.sh: re-arrange git tag comment for clarity X-Git-Tag: ko-pu~10^2~160 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=54c5dea3f913c762de24bd9dd2c7e9ff234d594b;p=git.git t7004-tag.sh: re-arrange git tag comment for clarity Split the "message in editor has initial comment" test into three tests. The motivation is to be able to only skip the middle part under NO_GETTEXT_POISON. In addition the return value of 'git tag' was being returned. We now check that it's non-zero. I used ! instead of test_must_fail so that the GIT_EDITOR variable was only used in this command invocation, and because the surrounding tests use this style. Signed-off-by: Ævar Arnfjörð Bjarmason --- diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh index ac943f5ee..700b556fe 100755 --- a/t/t7004-tag.sh +++ b/t/t7004-tag.sh @@ -1051,13 +1051,23 @@ test_expect_success \ test_expect_success \ 'message in editor has initial comment' ' - GIT_EDITOR=cat git tag -a initial-comment > actual + ! (GIT_EDITOR=cat git tag -a initial-comment > actual) +' + +test_expect_success \ + 'message in editor has initial comment: first line' ' # check the first line --- should be empty - first=$(sed -e 1q first.expect && + sed -e 1q first.actual && + test_cmp first.expect first.actual +' + +test_expect_success \ + 'message in editor has initial comment: remainder' ' # remove commented lines from the remainder -- should be empty - rest=$(sed -e 1d -e '/^#/d' rest.expect + sed -e 1d -e '/^#/d' rest.actual && + test_cmp rest.expect rest.actual ' get_tag_header reuse $commit commit $time >expect