Code & Deploy
Code
Models
Repos
Sign in
@leroysheep
/
rag-system
rag-system
/
t
/
chainlint
/
cuddled-if-then-else.test
Code
Commits
Pulls
CI/CD
81,841
master
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
'