File Coverage

blib/lib/Crypt/TSD.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Crypt::TSD;
2              
3 5     5   167810 use strict;
  5         11  
  5         170  
4 5     5   20 use warnings;
  5         8  
  5         287  
5              
6             # This is an alias for Crypt::TimestampedData
7             # See https://metacpan.org/dist/Data-Printer/source/lib/DDP.pm for reference
8              
9             # Import all functions from the main module
10 5     5   1897 use Crypt::TimestampedData;
  5         18  
  5         817  
11              
12             # Re-export everything
13             our @EXPORT = @Crypt::TimestampedData::EXPORT;
14             our @EXPORT_OK = @Crypt::TimestampedData::EXPORT_OK;
15             our %EXPORT_TAGS = %Crypt::TimestampedData::EXPORT_TAGS;
16              
17             # Set version - will be synchronized by SyncVersionFromDist plugin
18             our $VERSION = '0.01';
19              
20             # Make this module an alias
21             *Crypt::TSD:: = *Crypt::TimestampedData::;
22              
23             1;
24              
25             __END__