diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2013-01-03 21:03:09 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-03 07:43:26 -0800 |
commit | e216cc48daccf69c6de0c7fbb96c56f99197ca4c (patch) | |
tree | 5404380223c3764d466c8baa43b0ec229bc5b8c9 /t | |
parent | 4b5553b5f31c99f5c0a770d4bab2175fa89dd53a (diff) | |
download | git-e216cc48daccf69c6de0c7fbb96c56f99197ca4c.tar.gz |
t4014: a few more tests on cover letter using branch description
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t4014-format-patch.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh index 959aa26ef5..4183f9ae1c 100755 --- a/t/t4014-format-patch.sh +++ b/t/t4014-format-patch.sh @@ -891,4 +891,25 @@ test_expect_success 'format patch ignores color.ui' ' test_cmp expect actual ' +test_expect_success 'cover letter using branch description (1)' ' + git checkout rebuild-1 && + test_config branch.rebuild-1.description hello && + git format-patch --stdout --cover-letter master >actual && + grep hello actual >/dev/null +' + +test_expect_success 'cover letter using branch description (2)' ' + git checkout rebuild-1 && + test_config branch.rebuild-1.description hello && + git format-patch --stdout --cover-letter rebuild-1~2..rebuild-1 >actual && + grep hello actual >/dev/null +' + +test_expect_success 'cover letter using branch description (3)' ' + git checkout rebuild-1 && + test_config branch.rebuild-1.description hello && + git format-patch --stdout --cover-letter ^master rebuild-1 >actual && + grep hello actual >/dev/null +' + test_done |