File Coverage

blib/lib/Storable/AMF.pm
Criterion Covered Total %
statement 14 14 100.0
branch 2 2 100.0
condition n/a
subroutine 5 5 100.0
pod n/a
total 21 21 100.0


line stmt bran cond sub pod time code
1             package Storable::AMF;
2             # vim: ts=8 sw=4 sts=4 et
3 12     12   81306 use strict;
  12         16  
  12         277  
4 12     12   43 use warnings;
  12         13  
  12         486  
5             BEGIN {
6 12     12   24 our $VERSION;
7 12 100       171 $VERSION = '1.21' unless $INC{'Storable/AMF0.pm'};
8             }
9 12     12   2217 use Storable::AMF0; # install and create all methods
  12         17  
  12         472  
10 12     12   53 use Exporter 'import';
  12         14  
  12         1074  
11              
12             our %EXPORT_TAGS = (
13             'all' => [
14             qw(
15             freeze thaw dclone retrieve lock_retrieve lock_store lock_nstore store nstore ref_lost_memory ref_clear
16             deparse_amf new_amfdate perl_date
17             new_date
18             parse_serializator_option
19             parse_option
20             freeze0 freeze3 thaw0 thaw3 thaw0_sv
21             deparse_amf0 deparse_amf3
22             )
23             ]
24             );
25              
26             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
27             our @EXPORT = qw();
28              
29             1;
30             __END__