File Coverage

_build/lib/Evented/API/Builder.pm
Criterion Covered Total %
statement 6 10 60.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 14 57.1


line stmt bran cond sub pod time code
1             package Evented::API::Builder;
2 1     1   624 use Module::Build;
  1         71944  
  1         43  
3             @ISA = qw(Module::Build);
4              
5             sub ACTION_distmeta {
6 1     1   550 use Pod::Select;
  1         1831  
  1         207  
7              
8 0     0 0   my $self = shift;
9              
10 0           podselect({ -output => 'doc/engine.pod' },
11             'lib/Evented/API/Engine.pm');
12            
13 0           podselect({ -output => 'doc/module.pod' },
14             'lib/Evented/API/Module.pm');
15              
16 0           return $self->SUPER::ACTION_docs;
17             }
18            
19             1;