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   76 use strict;
  7         14  
  7         191  
4 7     7   35 use warnings;
  7         12  
  7         566  
5              
6             sub new {
7 175     175 1 5204 my $class = shift;
8              
9 175         403 my $self = bless {@_}, $class;
10              
11 175         528 $self->_BUILD;
12              
13 175         519 return $self;
14             }
15              
16       72     sub _BUILD {}
17              
18             1;
19             __END__