10 lines
168 B
Text
10 lines
168 B
Text
test_expect_success 'broken-chain' '
|
|
(
|
|
foo &&
|
|
# LINT: missing "&&" from "bar"
|
|
bar
|
|
baz &&
|
|
# LINT: final statement before closing ")" legitimately lacks "&&"
|
|
wop
|
|
)
|
|
'
|