1test_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) && 8echo foobar 9'