File Coverage

blib/lib/perl5i/VERSION.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package perl5i::VERSION;
2              
3             # Just a package to hold the version number and latest major version.
4              
5 105     105   601 use strict;
  105         189  
  105         3533  
6 105     105   1054 use warnings;
  105         296  
  105         5140  
7              
8 105     105   152027 use version 0.77; our $VERSION = qv("v2.13.0");
  105         342919  
  105         820  
9              
10 205     205 0 2746 sub latest { "perl5i::2" }; # LATEST HERE (for automated update)
11              
12             1;