1use strict; 2use warnings; 3use Test::More; 4use FindBin qw($Bin); 5 6require "$Bin/20fulldocs-text-multimarkdown.t"; 7 8my $docsdir = "$Bin/docs-pythonmarkdown2-tm-cases-pass"; 9my @files = get_files($docsdir); 10 11tidy(); 12 13plan tests => scalar(@files) + 1; 14 15use_ok('Text::MultiMarkdown'); 16 17my $m = Text::MultiMarkdown->new( 18 use_metadata => 0, 19 heading_ids => 0, # Remove MultiMarkdown behavior change in <hX> tags. 20 img_ids => 0, # Remove MultiMarkdown behavior change in <img> tags. 21); 22 23{ 24 local $TODO = 'Not many of the python markdown tests pass, but they ran off and did their own thing'; 25 run_tests($m, $docsdir, @files); 26}; 27