Raw
1 test_expect_success 'for-loop' '
2 (
3 # LINT: "for", "do", "done" do not need "&&"
4 for i in a b c
5 do
6 # LINT: missing "&&" on "echo"
7 echo $i
8 # LINT: last statement of while does not need "&&"
9 cat <<-\EOF
10 bar
11 EOF
12 # LINT: missing "&&" on "done"
13 done
14
15 # LINT: "do" on same line as "for"
16 for i in a b c; do
17 echo $i &&
18 cat $i
19 done
20 )
21 '