File Coverage

blib/lib/Kavorka/Sub/Before.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 9     9   3645 use 5.014;
  9         25  
2 9     9   33 use strict;
  9         11  
  9         170  
3 9     9   25 use warnings;
  9         9  
  9         475  
4              
5             package Kavorka::Sub::Before;
6              
7             our $AUTHORITY = 'cpan:TOBYINK';
8             our $VERSION = '0.037';
9              
10 9     9   31 use Moo;
  9         12  
  9         40  
11             with 'Kavorka::MethodModifier';
12              
13 6     6 0 19 sub method_modifier { 'before' }
14              
15             1;