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             package PLS::Parser::Pod::ClassMethod;
2              
3 13     13   112 use strict;
  13         27  
  13         697  
4 13     13   109 use warnings;
  13         27  
  13         1166  
5              
6 13     13   105 use parent 'PLS::Parser::Pod::Subroutine';
  13         31  
  13         85  
7              
8             =head1 NAME
9              
10             PLS::Parser::Pod::ClassMethod
11              
12             =head1 DESCRIPTION
13              
14             This is a subclass of L<PLS::Parser::Pod::Subroutine>, meant to distinguish regular subroutines from
15             class methods.
16              
17             =cut
18              
19             1;