File Coverage

blib/lib/Promises6/Evo/Builder.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Promises6::Evo::Builder;
2 31     31   104 use Evo 'Promises6::Builder';
  31         32  
  31         119  
3              
4             # run always in 1 depth
5              
6             has deferred_class => sub {
7             require Promises6::Evo::Deferred;
8             'Promises6::Evo::Deferred';
9             };
10              
11             1;
12              
13             # ABSTRACT: A builder
14              
15             __END__