File Coverage

blib/lib/Text/Livedoor/Wiki/Plugin/Inline/Del.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 17 17 100.0


line stmt bran cond sub pod time code
1             package Text::Livedoor::Wiki::Plugin::Inline::Del;
2              
3 10     10   310 use warnings;
  10         87  
  10         280  
4 10     10   52 use strict;
  10         23  
  10         445  
5 10     10   59 use base qw(Text::Livedoor::Wiki::Plugin::Inline);
  10         14  
  10         739  
6              
7             __PACKAGE__->regex(q{%%([^%]*)%%});
8             __PACKAGE__->n_args(1);
9             __PACKAGE__->dependency( 'Text::Livedoor::Wiki::Plugin::Inline::Underbar' );
10              
11             sub process {
12 11     11 1 26 my ( $class , $inline , $line ) = @_;
13 11         50 $line = $inline->parse($line);
14 11         57 return "$line";
15             }
16             1;
17              
18             =head1 NAME
19              
20             Text::Livedoor::Wiki::Plugin::Inline::Del - Del Inline Plugin
21              
22             =head1 DESCRIPTION
23              
24             delete text.
25              
26             =head1 SYNOPSIS
27              
28             %%delete text%%
29              
30             =head1 FUNCTION
31              
32             =head2 process
33              
34             =head1 AUTHOR
35              
36             polocky
37              
38             =cut