14 lines
184 B
Text
14 lines
184 B
Text
test_expect_success 'pipe' '
|
|
(
|
|
# LINT: no "&&" needed on line ending with "|"
|
|
foo |
|
|
bar |
|
|
baz &&
|
|
|
|
# LINT: final line of pipe sequence ("cow") lacking "&&"
|
|
fish |
|
|
cow
|
|
|
|
sunder
|
|
)
|
|
'
|