12 lines
234 B
Text
12 lines
234 B
Text
test_expect_success 'chain-break-false' '
|
|
# LINT: broken &&-chain okay if explicit "false" signals failure
|
|
if condition not satisified
|
|
then
|
|
echo it did not work...
|
|
echo failed!
|
|
false
|
|
else
|
|
echo it went okay
|
|
congratulate user
|
|
fi
|
|
'
|