Raw
1 test_expect_success 'if-condition-split' '
2 # LINT: "if" condition split across multiple lines at "&&" or "||"
3 if bob &&
4 marcia ||
5 kevin
6 then
7 echo "nomads"
8 echo "for sure"
9 fi
10 '