File Coverage

lib/App/dupfind/Threaded.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 providing seemless threading support for $bin/dupfind
2              
3 9     9   32937 use strict;
  9         17  
  9         301  
4 9     9   44 use warnings;
  9         15  
  9         444  
5              
6             package App::dupfind::Threaded;
7             {
8             $App::dupfind::Threaded::VERSION = '0.140230'; # TRIAL
9             }
10              
11 9     9   218 use 5.010;
  9         31  
  9         330  
12              
13 9     9   1312 use Moo;
  9         20308  
  9         71  
14              
15 9     9   4471 use lib 'lib';
  9         15  
  9         70  
16              
17             extends 'App::dupfind::Threaded::ThreadManagement';
18              
19             extends 'App::dupfind::Threaded::MapReduce';
20              
21             with 'App::dupfind::Threaded::MapReduce::Weed';
22              
23             with 'App::dupfind::Threaded::MapReduce::Digest';
24              
25             __PACKAGE__->meta->make_immutable;
26              
27             1;
28              
29             __END__