File Coverage

blib/lib/Perl/APIReference/V5_014_000.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 27 27 100.0


line stmt bran cond sub pod time code
1             package Perl::APIReference::V5_014_000;
2 1     1   4 use strict;
  1         3  
  1         28  
3 1     1   4 use warnings;
  1         3  
  1         27  
4 1     1   5 use Sereal::Decoder;
  1         2  
  1         52  
5 1     1   4 use parent 'Perl::APIReference';
  1         2  
  1         15  
6              
7             sub new {
8 6     6 1 15 my $class = shift;
9 6         20 my $pos = tell(*DATA);
10 6         16 binmode(*DATA);
11 6         28 local $/ = undef;
12              
13 6         605 my $data = ;
14 6         20 $data =~ s/^\s+//;
15              
16 6         21604 my $self = bless({
17             'index' => Sereal::Decoder::decode_sereal($data),
18             perl_version => '5.014000',
19             } => $class);
20              
21 6         79 seek(*DATA, $pos, 0);
22              
23 6         42 return $self;
24             }
25              
26             1;
27              
28             __DATA__