summaryrefslogtreecommitdiff
path: root/t/chainlint/cuddled-if-then-else.test
blob: b1b42e1aac8d90b2894f70c65de897247baec9f9 (plain)
1
2
3
4
5
6
7
8
9
test_expect_success 'cuddled-if-then-else' '
# LINT: "if" cuddled with "(" and ")"; indented with spaces, not tabs
(if test -z ""; then
    echo empty
 else
    echo bizzy
 fi) &&
echo foobar
'