Sign in
code
/
git
/
c7b5e0e58e3344eb866d0b09aeeeffaf5a3e3ae2
/
.
/
t
/
chainlint
/
loop-in-if.test
blob: b0d0d393cfeb1e66a63e4263cf88c44e4993a40c [
file
] [
log
] [
blame
]
test_expect_success
'loop-in-if'
'
(
if true
then
while true
do
# LINT: missing "&&" on "echo"
echo "pop"
echo "glup"
# LINT: missing "&&" on "done"
done
foo
# LINT: missing "&&" on "fi"
fi
bar
)
'