File Coverage

blib/lib/PDF/API2/Content/Text.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package PDF::API2::Content::Text;
2              
3 38     38   337 use base 'PDF::API2::Content';
  38         104  
  38         4603  
4              
5 38     38   265 use strict;
  38         102  
  38         850  
6 38     38   221 use warnings;
  38         88  
  38         3617  
7              
8             our $VERSION = '2.044'; # VERSION
9              
10             sub new {
11 18     18 1 43 my ($class) = @_;
12 18         89 my $self = $class->SUPER::new(@_);
13 18         102 $self->textstart();
14 18         45 return $self;
15             }
16              
17             1;