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 39     39   313 use base 'PDF::API2::Content';
  39         111  
  39         6226  
4              
5 39     39   275 use strict;
  39         94  
  39         1181  
6 39     39   212 use warnings;
  39         83  
  39         6044  
7              
8             our $VERSION = '2.048'; # VERSION
9              
10             sub new {
11 18     18 1 47 my ($class) = @_;
12 18         143 my $self = $class->SUPER::new(@_);
13 18         90 $self->textstart();
14 18         39 return $self;
15             }
16              
17             1;