Re: [PATCH v2] send-email: Add simple email aliases format
From: Allen Hubbe <allenbh@gmail.com>
Date: 2016-06-15 23:04:53
On Thu, May 21, 2015 at 11:59 PM, Eric Sunshine [off-list ref] wrote:
On Thu, May 21, 2015 at 11:19 PM, Allen Hubbe [off-list ref] wrote:quoted
On May 21, 2015 9:05 PM, "Eric Sunshine" [off-list ref] wrote:quoted
On Thu, May 21, 2015 at 8:16 PM, Allen Hubbe [off-list ref] wrote:quoted
+test_expect_success $PREREQ 'sendemail.aliasfiletype=simple' ' + clean_fake_sendmail && rm -fr outdir && + git format-patch -1 -o outdir && + { + echo "alice: Alice W Land [off-list ref]" + echo "bob: Robert Bobbyton [off-list ref]" + echo "chloe: chloe@example.com" + echo "abgroup: alice, bob" + echo "bcgrp: bob, chloe, Other [off-list ref]" + } >~/.tmp-email-aliases &&A here-doc would be easier to maintain and read:A here-doc does not flow nicely in an indented block. Each line inThat's true if you use <<EOF here-doc, but not for <<-EOF, as I did in the example. With <<-EOF, all leading tabs are stripped from the input lines, including from the EOF line, which is why it can be indented to the same level as the other code in the test. The added '\' in <<-\EOF from my example indicates that you don't want/expect any interpolation inside the here-doc. The <<-\EOF form is used extensively throughout the Git test suite.
Alright.