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             package PLS::Parser::Pod::Method;
2              
3 13     13   106 use strict;
  13         37  
  13         547  
4 13     13   68 use warnings;
  13         25  
  13         839  
5              
6 13     13   80 use parent 'PLS::Parser::Pod::Subroutine';
  13         26  
  13         85  
7              
8             =head1 NAME
9              
10             PLS::Parser::Pod::Method
11              
12             =head1 DESCRIPTION
13              
14             This is a subclass of L<PLS::Parser::Pod::Subroutine>, to distinguish regular subroutines
15             from methods.
16              
17             =cut
18              
19             1;