File Coverage

lib/MKDoc/Text/Structured/SIG.pm
Criterion Covered Total %
statement 13 19 68.4
branch 1 2 50.0
condition n/a
subroutine 4 6 66.6
pod 0 3 0.0
total 18 30 60.0


line stmt bran cond sub pod time code
1             package MKDoc::Text::Structured::SIG;
2 20     20   115 use base qw /MKDoc::Text::Structured::Base/;
  20         436  
  20         1898  
3 20     20   115 use warnings;
  20         37  
  20         512  
4 20     20   100 use strict;
  20         34  
  20         9683  
5              
6              
7             sub new
8             {
9 247     247 0 360 my $class = shift;
10 247         281 my $line = shift;
11 247 50       1660 $line eq '-- ' and return $class->SUPER::new();
12 247         1942 return;
13             }
14              
15              
16 0     0 0   sub is_ok { return 1 };
17              
18              
19             sub process
20             {
21 0     0 0   my $self = shift;
22 0           my @lines = @{$self->{lines}};
  0            
23 0           my $text = join "\n", @lines;
24              
25 0           return "
$text
";
26             }
27              
28              
29             1;
30              
31              
32             __END__