Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
t
/
chainlint
/
cuddled-if-then-else.test
Code
Commits
Pulls
CI/CD
82,027
next
bisect
jch
maint
master
next
seen
test
todo
test
9 lines
194 Bytes
Copy permalink
Copy
Raw
1
test_expect_success
'cuddled-if-then-else'
'
2
# LINT: "if" cuddled with "(" and ")"; indented with spaces, not tabs
3
(if test -z ""; then
4
echo empty
5
else
6
echo bizzy
7
fi) &&
8
echo foobar
9
'