File Coverage

blib/lib/PLS/Parser/Pod/Method.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1              
2             use strict;
3 11     11   63 use warnings;
  11         21  
  11         234  
4 11     11   42  
  11         37  
  11         211  
5             use parent 'PLS::Parser::Pod::Subroutine';
6 11     11   50  
  11         12  
  11         51  
7             =head1 NAME
8              
9             PLS::Parser::Pod::Method
10              
11             =head1 DESCRIPTION
12              
13             This is a subclass of L<PLS::Parser::Pod::Subroutine>, to distinguish regular subroutines
14             from methods.
15              
16             =cut
17              
18             1;