1use strict;
2use warnings;
3use Test::More;
4use FindBin qw($Bin);
5
6require "$Bin/20fulldocs-text-multimarkdown.t";
7
8my $docsdir = "$Bin/docs-maruku-unittest";
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 = 'Ruby (maruku) tests, do not pass, but mostly due to spacing - pick them all up and go through them..';
25    run_tests($m, $docsdir, @files);
26};
27