File Coverage

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


line stmt bran cond sub pod time code
1             package Text::APL::Base;
2              
3 7     7   34 use strict;
  7         9  
  7         194  
4 7     7   24 use warnings;
  7         8  
  7         447  
5              
6             sub new {
7 161     161 1 3983 my $class = shift;
8              
9 161         348 my $self = bless {@_}, $class;
10              
11 161         348 $self->_BUILD;
12              
13 161         350 return $self;
14             }
15              
16 66     66   55 sub _BUILD {}
17              
18             1;
19             __END__