File Coverage

blib/lib/PLS/Parser/Pod/ClassMethod.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   64 use warnings;
  11         24  
  11         244  
4 11     11   52  
  11         11  
  11         231  
5             use parent 'PLS::Parser::Pod::Subroutine';
6 11     11   44  
  11         21  
  11         43  
7             =head1 NAME
8              
9             PLS::Parser::Pod::ClassMethod
10              
11             =head1 DESCRIPTION
12              
13             This is a subclass of L<PLS::Parser::Pod::Subroutine>, meant to distinguish regular subroutines from
14             class methods.
15              
16             =cut
17              
18             1;