File Coverage

blib/lib/Starch/Plugin/Trace.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 17 18 94.4


line stmt bran cond sub pod time code
1             package Starch::Plugin::Trace;
2 1     1   621 use 5.008001;
  1         5  
3 1     1   8 use strictures 2;
  1         11  
  1         43  
4             our $VERSION = '0.12';
5              
6 1     1   248 use Moo;
  1         3  
  1         10  
7 1     1   446 use namespace::clean;
  1         5  
  1         9  
8              
9             with qw(
10             Starch::Plugin::Bundle
11             );
12              
13             sub bundled_plugins {
14 7     7 0 176 return [qw(
15             ::Trace::Manager
16             ::Trace::State
17             ::Trace::Store
18             )];
19             }
20              
21             1;
22             __END__