File Coverage

blib/lib/Module/Setup/Path/File.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition 2 3 66.6
subroutine 4 4 100.0
pod 1 1 100.0
total 18 19 94.7


line stmt bran cond sub pod time code
1             package Module::Setup::Path::File;
2 47     47   376 use strict;
  47         101  
  47         2056  
3 47     47   278 use warnings;
  47         104  
  47         2930  
4 47     47   457 use base 'Path::Class::File';
  47         91  
  47         7932  
5              
6             sub stringify {
7 11829     11829 1 399573 my($self) = @_;
8 11829   66     312041 return $self->{__stringify_cache} ||= $self->SUPER::stringify;
9             }
10              
11             1;