Files
discount/tests/linkypix.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

22 lines
455 B
Raku

. tests/functions.sh
title "embedded images"
rc=0
MARKDOWN_FLAGS=
try 'image with size extension' \
'![picture](pic =200x200)' \
'<p><img src="pic" height="200" width="200" alt="picture" /></p>'
try 'image with height' \
'![picture](pic =x200)' \
'<p><img src="pic" height="200" alt="picture" /></p>'
try 'image with width' \
'![picture](pic =200x)' \
'<p><img src="pic" width="200" alt="picture" /></p>'
summary $0
exit $rc