File Coverage

blib/lib/perl5i/latest.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 17 17 100.0


line stmt bran cond sub pod time code
1             package perl5i::latest;
2              
3 100     100   445874 use strict;
  100         203  
  100         4822  
4 100     100   55686 use perl5i::VERSION; our $VERSION = perl5i::VERSION->VERSION;
  100         305  
  100         6715  
5              
6             my $Latest;
7 100     100   717 BEGIN { $Latest = perl5i::VERSION->latest; }
8              
9 100     100   108589 use parent ($Latest);
  100         64909  
  100         565  
10 107     107   281780 sub import { goto &{$Latest .'::import'} }
  107         794  
11              
12             1;
13              
14             __END__