Text::Markdown::Discount
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
515 B

  1. . tests/functions.sh
  2. title "crashes"
  3. rc=0
  4. MARKDOWN_FLAGS=
  5. try 'zero-length input' '' ''
  6. try 'hanging quote in list' \
  7. ' * > this should not die
  8. no.' \
  9. '<ul>
  10. <li><blockquote><p>this should not die</p></blockquote></li>
  11. </ul>
  12. <p>no.</p>'
  13. try 'dangling list item' ' - ' \
  14. '<ul>
  15. <li></li>
  16. </ul>'
  17. try -bHOHO 'empty []() with baseurl' '[]()' '<p><a href=""></a></p>'
  18. try 'unclosed html block' '<table></table' '<p><table>&lt;/table</p>'
  19. try 'unclosed style block' '<style>' '<p><style></p>'
  20. summary $0
  21. exit $rc