File Coverage

blib/lib/Sweet/HomeDir.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package Sweet::HomeDir;
2 1     1   257191 use Moose;
  0            
  0            
3             use namespace::autoclean;
4              
5             use File::HomeDir;
6              
7             extends 'Sweet::Dir';
8              
9             sub _build_path { File::HomeDir->my_home }
10              
11             __PACKAGE__->meta->make_immutable;
12              
13             1;
14              
15             __END__
16              
17             =encoding utf8
18              
19             =head1 NAME
20              
21             Sweet::HomeDir
22              
23             =cut
24