| 1 | test_expect_success 'not-heredoc' ' |
| 2 | # LINT: "<< ours" inside string is not here-doc |
| 3 | echo "<<<<<<< ours" && |
| 4 | echo ourside && |
| 5 | echo "=======" && |
| 6 | echo theirside && |
| 7 | echo ">>>>>>> theirs" && |
| 8 | |
| 9 | ( |
| 10 | # LINT: "<< ours" inside string is not here-doc |
| 11 | echo "<<<<<<< ours" && |
| 12 | echo ourside && |
| 13 | echo "=======" && |
| 14 | echo theirside && |
| 15 | echo ">>>>>>> theirs" |
| 16 | poodle |
| 17 | ) >merged |
| 18 | ' |