File Coverage

blib/lib/Starch/Plugin/AlwaysLoad.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Starch::Plugin::AlwaysLoad;
2             our $VERSION = '0.14';
3              
4 1     1   593 use Moo::Role;
  1         3  
  1         8  
5 1     1   380 use strictures 2;
  1         9  
  1         45  
6 1     1   226 use namespace::clean;
  1         2  
  1         8  
7              
8             with 'Starch::Plugin::ForState';
9              
10             after BUILD => sub{
11             my ($self) = @_;
12              
13             $self->data();
14              
15             return;
16             };
17              
18             1;
19             __END__