From: Jeff King Date: Tue, 15 Aug 2017 10:24:39 +0000 (-0400) Subject: t4205: refactor %(trailers) tests X-Git-Tag: v2.15.0-rc0~127^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/cc1735c4a3cf3377289640ce1af6b4c4523bee11 t4205: refactor %(trailers) tests We currently have one test for %(trailers). In preparation for more, let's refactor a few bits: - move the commit creation to its own setup step so it can be reused by multiple tests - add a trailer with whitespace continuation (to confirm that it is left untouched) - fix the sample text which claims the placeholder is %bT. This was switched long ago to %(trailers) - replace one "cat" with an "echo" when generating the expected output. This saves a process (and sets a better pattern for future tests to follow). Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/t/t4205-log-pretty-formats.sh b/t/t4205-log-pretty-formats.sh index 18aa1b5889..83ea85eb45 100755 --- a/t/t4205-log-pretty-formats.sh +++ b/t/t4205-log-pretty-formats.sh @@ -539,25 +539,29 @@ cat >trailers < Acked-by: A U Thor [ v2 updated patch description ] -Signed-off-by: A U Thor +Signed-off-by: A U Thor + EOF -test_expect_success 'pretty format %(trailers) shows trailers' ' +test_expect_success 'set up trailer tests' ' echo "Some contents" >trailerfile && git add trailerfile && - git commit -F - <<-EOF && + git commit -F - <<-EOF trailers: this commit message has trailers This commit is a test commit with trailers at the end. We parse this - message and display the trailers using %bT + message and display the trailers using %(trailers). $(cat trailers) EOF - git log --no-walk --pretty="%(trailers)" >actual && - cat >expect <<-EOF && - $(cat trailers) +' - EOF +test_expect_success 'pretty format %(trailers) shows trailers' ' + git log --no-walk --pretty="%(trailers)" >actual && + { + cat trailers && + echo + } >expect && test_cmp expect actual '