Files
discount/tests/snakepit.t
T
David Parsons 3aa4343255 Rework all of the test cases so they use tests/functions.sh,
which gives me the ability to do verbose and nonverbose test
suite running (`VERBOSE=1 make test` is the traditional output
now, and `make test` just gives pass/fail on each .t file)
2010-02-11 23:13:29 -08:00

27 lines
707 B
Raku

. tests/functions.sh
title "The snakepit of Markdown.pl compatability"
rc=0
MARKDOWN_FLAGS=
try '[](single quote) text (quote)' \
"[foo](http://Poe's law) will make this fail ('no, it won't!') here."\
'<p><a href="http://Poe" title="s law) will make this fail ('"'no, it won't!"'">foo</a> here.</p>'
try '[](unclosed <url)' '[foo](<http://no trailing gt)' \
'<p><a href="http://no%20trailing%20gt">foo</a></p>'
try '<unfinished <tags> (1)' \
'<foo [bar](foo) <s>hi</s>' \
'<p><foo [bar](foo) <s>hi</s></p>'
try '<unfinished &<tags> (2)' \
'<foo [bar](foo) &<s>hi</s>' \
'<p><foo [bar](foo) &<s>hi</s></p>'
try 'paragraph <br/> oddity' 'EOF ' '<p>EOF</p>'
summary $0
exit $rc