Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
t
/
chainlint
/
loop-in-if.test
Code
Commits
Pulls
CI/CD
81,295
bisect
bisect
jch
maint
master
next
seen
test
todo
test
17 lines
216 Bytes
Copy permalink
Copy
Raw
1
test_expect_success
'loop-in-if'
'
2
(
3
if true
4
then
5
while true
6
do
7
# LINT: missing "&&" on "echo"
8
echo "pop"
9
echo "glup"
10
# LINT: missing "&&" on "done"
11
done
12
foo
13
# LINT: missing "&&" on "fi"
14
fi
15
bar
16
)
17
'