File Coverage

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


line stmt bran cond sub pod time code
1             package Text::Livedoor::Wiki::Plugin::Inline::BreakClearAll;
2              
3 10     10   111 use warnings;
  10         17  
  10         271  
4 10     10   48 use strict;
  10         17  
  10         285  
5 10     10   69 use base qw(Text::Livedoor::Wiki::Plugin::Inline);
  10         22  
  10         410  
6              
7             __PACKAGE__->regex(q{\~\~\~});
8             __PACKAGE__->n_args(0);
9              
10             sub process {
11 2     2 1 3 my ( $class , $inline , $line ) = @_;
12 2         7 return '
';
13             }
14              
15             1;
16              
17             =head1 NAME
18              
19             Text::Livedoor::Wiki::Plugin::Inline::BreakClearAll - br with clear="all" inline plugin
20              
21             =head1 DESCRIPTION
22              
23             break with clear="all" attr.
24              
25             =head1 SYNOPSIS
26              
27             hoge ~~~ hoge
28              
29             =head1 FUNCTION
30              
31             =head2 process
32              
33             =head1 AUTHOR
34              
35             polocky
36              
37             =cut