File Coverage

blib/lib/Mojolicious/Plugin/Images/Transformer.pm
Criterion Covered Total %
statement 9 14 64.2
branch 0 4 0.0
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 23 56.5


line stmt bran cond sub pod time code
1             package Mojolicious::Plugin::Images::Transformer;
2 7     7   27 use Mojo::Base -base;
  7         13  
  7         38  
3 7     7   802 use 5.20.0;
  7         15  
  7         198  
4 7     7   25 use experimental 'signatures';
  7         9  
  7         31  
5              
6             has [qw(id service image controller)];
7 0 0   0 1   sub app ($self) { $self->controller->app }
  0 0          
  0            
  0            
  0            
8              
9             1;
10              
11             __END__