File Coverage

blib/lib/Text/APL/Base.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Text::APL::Base;
2              
3 7     7   42 use strict;
  7         37  
  7         172  
4 7     7   25 use warnings;
  7         10  
  7         478  
5              
6             sub new {
7 175     175 1 3726 my $class = shift;
8              
9 175         322 my $self = bless {@_}, $class;
10              
11 175         375 $self->_BUILD;
12              
13 175         385 return $self;
14             }
15              
16       72     sub _BUILD {}
17              
18             1;
19             __END__