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

21 lines
210 B
Plaintext
Raw Normal View History

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