blob: 7b5048d2ea17fe1db337e86f617db3dc0d2c49ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
)
'
|