10 lines
184 B
Text
10 lines
184 B
Text
test_expect_success 'if-condition-split' '
|
|
# LINT: "if" condition split across multiple lines at "&&" or "||"
|
|
if bob &&
|
|
marcia ||
|
|
kevin
|
|
then
|
|
echo "nomads"
|
|
echo "for sure"
|
|
fi
|
|
'
|