File Coverage

blib/lib/Starch/Plugin/Trace.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Starch::Plugin::Trace;
2             our $VERSION = '0.14';
3              
4 1     1   455 use Moo;
  1         2  
  1         5  
5 1     1   310 use strictures 2;
  1         6  
  1         35  
6 1     1   170 use namespace::clean;
  1         2  
  1         14  
7              
8             with 'Starch::Plugin::Bundle';
9              
10             sub bundled_plugins {
11 7     7 0 202 return [qw(
12             ::Trace::Manager
13             ::Trace::State
14             ::Trace::Store
15             )];
16             }
17              
18             1;
19             __END__