summaryrefslogtreecommitdiff
path: root/t/chainlint/broken-chain.test
blob: 1966499ef963b522962e9a5541e64466de271f03 (plain)
1
2
3
4
5
6
7
8
9
10
test_expect_success 'broken-chain' '
(
	foo &&
# LINT: missing "&&" from "bar"
	bar
	baz &&
# LINT: final statement before closing ")" legitimately lacks "&&"
	wop
)
'