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 101     101   432 use strict;
  101         132  
  101         3480  
6 101     101   430 use warnings;
  101         115  
  101         2981  
7              
8 101     101   50058 use version 0.77; our $VERSION = qv("v2.13.1");
  101         168396  
  101         581  
9              
10 201     201 0 2200 sub latest { "perl5i::2" }; # LATEST HERE (for automated update)
11              
12             1;