File Coverage

blib/lib/Exodist/Util.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 Exodist::Util;
2 1     1   69217 use strict;
  1         2  
  1         38  
3 1     1   5 use warnings;
  1         2  
  1         33  
4              
5 1     1   6 use Exporter::Declare '-all';
  1         2  
  1         10  
6              
7             our $VERSION = '0.008';
8             our @UTIL_PACKAGES = qw/
9             Exodist::Util::Package
10             Exodist::Util::Alias
11             Exodist::Util::Accessors
12             Exodist::Util::Loader
13             Exodist::Util::Sub
14             List::Util
15             Scalar::Util
16             /;
17              
18             for my $package (@UTIL_PACKAGES) {
19             eval "require $package; 1" || die $@;
20             reexport($package);
21             }
22              
23             #use Data::Dumper;
24             #print Dumper( export_meta );
25              
26             1;
27              
28             __END__