summaryrefslogtreecommitdiff
path: root/t/chainlint/pipe.test
blob: 1af81c243b042689c43993470191ad37e1ea3039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
)
'