]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/cuddled.test
Merge branch 'en/fetch-negotiation-default-fix'
[thirdparty/git.git] / t / chainlint / cuddled.test
1 # LINT: first subshell statement cuddled with opening "("
2 (cd foo &&
3 bar
4 ) &&
5
6 # LINT: same with missing "&&"
7 (cd foo
8 bar
9 ) &&
10
11 # LINT: closing ")" cuddled with final subshell statement
12 (
13 cd foo &&
14 bar) &&
15
16 # LINT: "(" and ")" cuddled with first and final subshell statements
17 (cd foo &&
18 bar) &&
19
20 # LINT: same with missing "&&"
21 (cd foo
22 bar)