17 lines
192 B
Text
17 lines
192 B
Text
test_expect_success 'multi-line-string' '
|
|
(
|
|
x="line 1
|
|
line 2
|
|
line 3" &&
|
|
# LINT: missing "&&" on assignment
|
|
y="line 1
|
|
line2"
|
|
foobar
|
|
) &&
|
|
(
|
|
echo "xyz" "abc
|
|
def
|
|
ghi" &&
|
|
barfoo
|
|
)
|
|
'
|