1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#!/usr/bin/perl
use v5.14;
use warnings;
use Test::More;
my @paras;
package TestParser;
use base qw( Parse::Man );
sub join_para { $paras[-1] .= " " }
sub para_P
{
my $self = shift;
push @paras, "P: ";
}
sub para_EX
{
my $self = shift;
push @paras, "EX: ";
}
sub chunk
{
my $self = shift;
my ( $text ) = @_;
$paras[-1] .= $text;
}
package main;
my $parser = TestParser->new;
undef @paras;
$parser->from_string( <<'EOMAN' );
.EX
Text inside
the example
.EE
EOMAN
is_deeply( \@paras,
[ "EX: Text inside the example " ],
'.EX / .EE' );
undef @paras;
$parser->from_string( <<'EOMAN' );
.PP
Plain text
.EX
The example here
.EE
More text
EOMAN
is_deeply( \@paras,
[ "P: Plain text",
"EX: The example here ",
"P: More text" ],
'.EX/.EE inside .PP' );
done_testing;
|