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.

20 lines
319 B

12 years ago
  1. use Test::More tests => 2;
  2. use Text::Markdown::Discount;
  3. # https://rt.cpan.org/Ticket/Display.html?id=73657
  4. {
  5. local $@;
  6. eval {
  7. Text::Markdown::Discount::markdown("");
  8. };
  9. is($@, '');
  10. }
  11. {
  12. local $@;
  13. eval {
  14. Text::Markdown::Discount::markdown("\n\n\n\n");
  15. };
  16. is($@, '');
  17. }