File Coverage

blib/lib/BioX/CLPM.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package BioX::CLPM;
2 1     1   26674 use base qw(BioX::CLPM::Base);
  1         2  
  1         610  
3             use Class::Std;
4             use Class::Std::Utils;
5              
6             use warnings;
7             use strict;
8             use Carp;
9              
10             use version; our $VERSION = qv('0.0.1');
11              
12             {
13             my %attribute_of :ATTR( :get :set :default<''> :init_arg );
14            
15             sub BUILD {
16             my ($self, $ident, $arg_ref) = @_;
17            
18              
19             return;
20             }
21              
22             sub START {
23             my ($self, $ident, $arg_ref) = @_;
24            
25              
26             return;
27             }
28              
29             }
30              
31             1; # Magic true value required at end of module
32             __END__