File Coverage

blib/lib/Kavorka/Sub/Augment.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 2     2   799 use 5.014;
  2         4  
2 2     2   9 use strict;
  2         2  
  2         39  
3 2     2   6 use warnings;
  2         2  
  2         108  
4              
5             package Kavorka::Sub::Augment;
6              
7             our $AUTHORITY = 'cpan:TOBYINK';
8             our $VERSION = '0.037';
9              
10 2     2   7 use Moo;
  2         3  
  2         9  
11             with 'Kavorka::MethodModifier';
12              
13 2     2 0 4 sub method_modifier { 'augment' }
14              
15             1;