Skip to content

Commit

Permalink
Add a test for double anchors, in TODO block.
Browse files Browse the repository at this point in the history
  • Loading branch information
benkasminbullock authored and theory committed Jun 9, 2012
1 parent 1e6a3fe commit 5cb92a1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions t/xhtml-bkb.t
@@ -0,0 +1,24 @@
#!/usr/bin/perl -w

# t/xhtml-bkb.t - https://rt.cpan.org/Public/Bug/Display.html?id=77686

use strict;
use warnings;
use Test::More tests => 1;
use Pod::Simple::XHTML;
my $c = <<EOF;
=head1 Documentation
=head2 Changes to Existing Documentation
=head3 L<perldata>
EOF
my $d = Pod::Simple::XHTML->new ();
$d->index (1);
my $e;
$d->output_string (\$e);
$d->parse_string_document ($c);
TODO: {
local $TODO = 'See bug report';
unlike ($e, qr!<a[^>]+><a[^>]+>!);
};

0 comments on commit 5cb92a1

Please sign in to comment.