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   60 use warnings;
  11         22  
  11         269  
4 11     11   38  
  11         21  
  11         228  
5             use parent 'PLS::Parser::Pod::Subroutine';
6 11     11   38  
  11         23  
  11         36  
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;