File Coverage

blib/lib/Tie/MLDBM/Serialise/Storable.pm
Criterion Covered Total %
statement 9 13 69.2
branch n/a
condition n/a
subroutine 3 5 60.0
pod 0 2 0.0
total 12 20 60.0


line stmt bran cond sub pod time code
1             package Tie::MLDBM::Serialise::Storable;
2              
3 1     1   30524 use Storable;
  1         4437  
  1         91  
4              
5 1     1   10 use strict;
  1         3  
  1         42  
6 1     1   5 use vars qw/ $VERSION /;
  1         3  
  1         138  
7              
8             $VERSION = '1.04';
9              
10              
11             sub deserialise {
12 0     0 0   my ( $self, $arg ) = @_;
13 0           return Storable::thaw( $arg );
14             }
15              
16              
17             sub serialise {
18 0     0 0   my ( $self, $arg ) = @_;
19 0           return Storable::nfreeze( $arg );
20             }
21              
22              
23             1;
24              
25              
26             __END__