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

21 lines
205 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
fi ?!AMP?!
echo poodle
>) &&
(
if test -n ""; then
echo very &&
echo empty
fi
>)