19 lines
357 B
Plaintext
19 lines
357 B
Plaintext
test_expect_success 'not-heredoc' '
|
|
# LINT: "<< ours" inside string is not here-doc
|
|
echo "<<<<<<< ours" &&
|
|
echo ourside &&
|
|
echo "=======" &&
|
|
echo theirside &&
|
|
echo ">>>>>>> theirs" &&
|
|
|
|
(
|
|
# LINT: "<< ours" inside string is not here-doc
|
|
echo "<<<<<<< ours" &&
|
|
echo ourside &&
|
|
echo "=======" &&
|
|
echo theirside &&
|
|
echo ">>>>>>> theirs"
|
|
poodle
|
|
) >merged
|
|
'
|