git/t/chainlint/if-then-else.expect

23 lines
223 B
Plaintext

(
if test -n ""
then
echo very ?!AMP?!
echo empty
elif test -z ""
then
echo foo
else
echo foo &&
cat <<-\EOF
bar
EOF
fi ?!AMP?!
echo poodle
) &&
(
if test -n ""; then
echo very &&
echo empty
fi
)