The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w

###############################################################################
#
# A test for Pod::Simple::Wiki.
#
# Tests for I<>, B<>, C<> etc., formatting codes.
#
# reverse('©'), August 2004, John McNamara, jmcnamara@cpan.org
#


use strict;

use Pod::Simple::Wiki;
use Test::More tests => 6;

my $style = 'usemod';

# Output the tests for visual testing in the wiki.
# END{output_tests()};

my @tests  = (
            # Simple formatting tests
            [ "=pod\n\nI<Foo>"    => qq(<i>Foo</i>\n\n),        'Italic'     ],
            [ "=pod\n\nB<Foo>"    => qq(<b>Foo</b>\n\n),        'Bold'       ],
            [ "=pod\n\nC<Foo>"    => qq(<tt>Foo</tt>\n\n),      'Monospace'  ],
            [ "=pod\n\nF<Foo>"    => qq(<i>Foo</i>\n\n),        'Filename'   ],

            # Nested formatting tests
            [ "=pod\n\nB<I<Foo>>" => qq(<b><i>Foo</i></b>\n\n), 'Bold Italic'],
            [ "=pod\n\nI<B<Foo>>" => qq(<i><b>Foo</b></i>\n\n), 'Italic Bold'],
);



###############################################################################
#
#  Run the tests.
#
for my $test_ref (@tests) {

    my $parser  = Pod::Simple::Wiki->new($style);
    my $pod     = $test_ref->[0];
    my $target  = $test_ref->[1];
    my $name    = $test_ref->[2];
    my $wiki;

    $parser->output_string(\$wiki);
    $parser->parse_string_document($pod);

    is($wiki, $target, "\tTesting: $name");
}


###############################################################################
#
# Output the tests for visual testing in the wiki.
#
sub output_tests {

    my $test = 1;

    print "\n\n";

    for my $test_ref (@tests) {

        my $parser  =  Pod::Simple::Wiki->new($style);
        my $pod     =  $test_ref->[0];
        my $name    =  $test_ref->[2];

        $pod        =~ s/=pod\n\n//;
        $pod        = "=pod\n\n=head2 Test ". $test++ . " $name\n\n$pod";

        $parser->parse_string_document($pod);
    }
}


__END__