Raw
1 test_expect_success 'here-doc-multi-line-string' '
2 (
3 # LINT: line contains here-doc and opens multi-line string
4 cat <<-\TXT && echo "multi-line
5 string"
6 fizzle
7 TXT
8 bap
9 )
10 '