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

19 lines
635 B
Raku

. tests/functions.sh
title "xml output with MKD_CDATA"
rc=0
MARKDOWN_FLAGS=
try -fcdata 'xml output from markdown()' 'hello,sailor' '<p>hello,sailor</p>'
try -fcdata 'from mkd_generateline()' -t'"hello,sailor"' '“hello,sailor”'
try -fnocdata 'html output from markdown()' '"hello,sailor"' '<p>&ldquo;hello,sailor&rdquo;</p>'
try -fnocdata '... from mkd_generateline()' -t'"hello,sailor"' '&ldquo;hello,sailor&rdquo;'
try -fcdata 'xml output with multibyte utf-8' \
'tecnología y servicios más confiables' \
'&lt;p&gt;tecnología y servicios más confiables&lt;/p&gt;'
summary $0
exit $rc