File Coverage

blib/lib/Text/Livedoor/Wiki/Plugin/Inline/Bold.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::Bold;
2              
3 10     10   62 use warnings;
  10         21  
  10         517  
4 10     10   1288 use strict;
  10         15  
  10         409  
5 10     10   52 use base qw(Text::Livedoor::Wiki::Plugin::Inline);
  10         19  
  10         2344  
6              
7             __PACKAGE__->regex(q{''([^']*)''});
8             __PACKAGE__->n_args(1);
9             __PACKAGE__->dependency('Text::Livedoor::Wiki::Plugin::Inline::Italic' );
10              
11             sub process {
12 2     2 1 6 my ( $class , $inline , $line ) = @_;
13 2         10 $line = $inline->parse($line);
14 2         11 return "$line";
15             }
16              
17             1;
18              
19             =head1 NAME
20              
21             Text::Livedoor::Wiki::Plugin::Inline::Bold - Bold Inline Plugin
22              
23             =head1 DESCRIPTION
24              
25             make text italic.
26              
27             =head1 SYNOPSIS
28              
29             ''Bold Text''
30              
31             =head1 FUNCTION
32              
33             =head2 process
34              
35             =head1 AUTHOR
36              
37             polocky
38              
39             =cut