File Coverage

lib/App/Perlbrew/Path/Installation.pm
Criterion Covered Total %
statement 10 11 90.9
branch n/a
condition n/a
subroutine 6 7 85.7
pod 0 5 0.0
total 16 23 69.5


line stmt bran cond sub pod time code
1 60     60   428 use strict;
  60         128  
  60         1727  
2 60     60   319 use warnings;
  60         152  
  60         10327  
3              
4             package App::Perlbrew::Path::Installation;
5              
6             require App::Perlbrew::Path;
7              
8             our @ISA = qw( App::Perlbrew::Path );
9              
10             sub name {
11 465     465 0 1596 $_[0]->basename;
12             }
13              
14             sub bin {
15 471     471 0 1215 shift->child(bin => @_);
16             }
17              
18             sub man {
19 0     0 0 0 shift->child(man => @_);
20             }
21              
22             sub perl {
23 469     469 0 1093 shift->bin('perl');
24             }
25              
26             sub version_file {
27 468     468 0 1448 shift->child('.version');
28             }
29              
30             1;
31