From: Joel Teichroeb Date: Sat, 19 Aug 2017 20:13:26 +0000 (-0700) Subject: stash: add a test for stashing in a detached state X-Git-Tag: v2.15.0-rc0~126^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4e9bf3dd6daec09b9a0b110825093c6a480f92e4;p=git stash: add a test for stashing in a detached state All that we are really testing here is that the message is correct when we are not on any branch. All other functionality is already tested elsewhere. Signed-off-by: Joel Teichroeb Signed-off-by: Junio C Hamano --- diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh index 887010c497..3b1ac1971a 100755 --- a/t/t3903-stash.sh +++ b/t/t3903-stash.sh @@ -822,6 +822,18 @@ test_expect_success 'create with multiple arguments for the message' ' test_cmp expect actual ' +test_expect_success 'create in a detached state' ' + test_when_finished "git checkout master" && + git checkout HEAD~1 && + >foo && + git add foo && + STASH_ID=$(git stash create) && + HEAD_ID=$(git rev-parse --short HEAD) && + echo "WIP on (no branch): ${HEAD_ID} initial" >expect && + git show --pretty=%s -s ${STASH_ID} >actual && + test_cmp expect actual +' + test_expect_success 'stash -- stashes and restores the file' ' >foo && >bar &&