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   305 use base 'PDF::API2::Content';
  39         94  
  39         4391  
4              
5 39     39   270 use strict;
  39         90  
  39         840  
6 39     39   200 use warnings;
  39         102  
  39         3585  
7              
8             our $VERSION = '2.045'; # VERSION
9              
10             sub new {
11 18     18 1 40 my ($class) = @_;
12 18         92 my $self = $class->SUPER::new(@_);
13 18         82 $self->textstart();
14 18         42 return $self;
15             }
16              
17             1;