File Coverage

blib/lib/KSx/IndexManager/Plugin.pm
Criterion Covered Total %
statement 9 15 60.0
branch n/a
condition n/a
subroutine 3 9 33.3
pod 6 6 100.0
total 18 30 60.0


line stmt bran cond sub pod time code
1 1     1   3316 use strict;
  1         2  
  1         37  
2 1     1   5 use warnings;
  1         2  
  1         45  
3              
4             package KSx::IndexManager::Plugin;
5              
6 1     1   6 use base qw(Class::Accessor::Grouped);
  1         2  
  1         179  
7              
8 0     0 1   sub new { bless $_[1] => $_[0] }
9              
10 0     0 1   sub before_new { }
11 0     0 1   sub after_new { }
12              
13 0     0 1   sub alter_path { }
14              
15 0     0 1   sub before_add_doc { }
16 0     0 1   sub after_add_doc { }
17              
18             1;
19             __END__