File Coverage

blib/lib/DB/Pluggable/Role/Initializer.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package DB::Pluggable::Role::Initializer;
2 1     1   661 use strict;
  1         3  
  1         28  
3 1     1   6 use warnings;
  1         2  
  1         21  
4 1     1   20 use 5.010;
  1         4  
5 1     1   5 use Role::Basic;
  1         2  
  1         5  
6             with qw(Brickyard::Role::Plugin);
7             requires qw(initialize);
8             our $VERSION = '1.12';
9             1;
10              
11             __END__