summaryrefslogtreecommitdiff
path: root/t/chainlint/one-liner-for-loop.test
blob: 00afd7ef76ee8c1284f46cf9f6b67299c85dc760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
test_expect_success 'one-liner-for-loop' '
git init dir-rename-and-content &&
(
	cd dir-rename-and-content &&
	test_write_lines 1 2 3 4 5 >foo &&
	mkdir olddir &&
# LINT: one-liner for-loop missing "|| exit"; also broken &&-chain
	for i in a b c; do echo $i >olddir/$i; done
	git add foo olddir &&
	git commit -m "original" &&
)
'