File Coverage

lib/App/dupfind.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             # ABSTRACT: Composed class exposing the App::dupfind iface, used in $bin/dupfind
2              
3 8     8   58986 use strict;
  8         16  
  8         283  
4 8     8   40 use warnings;
  8         70  
  8         395  
5              
6             package App::dupfind;
7             {
8             $App::dupfind::VERSION = '0.140230'; # TRIAL
9             }
10              
11 8     8   185 use 5.010;
  8         26  
  8         320  
12              
13 8     8   6871 use Moo;
  8         140787  
  8         64  
14              
15 8     8   14796 use lib 'lib';
  8         17  
  8         62  
16              
17             extends 'App::dupfind::Common';
18              
19             with 'App::dupfind::Guts';
20              
21             __PACKAGE__->meta->make_immutable;
22              
23             1;
24              
25             __END__