File Coverage

blib/lib/DB/Pluggable/Role/AfterInit.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package DB::Pluggable::Role::AfterInit;
2 1     1   792 use strict;
  1         2  
  1         32  
3 1     1   5 use warnings;
  1         1  
  1         23  
4 1     1   17 use 5.010;
  1         3  
  1         37  
5 1     1   4 use Role::Basic;
  1         1  
  1         15  
6             with qw(Brickyard::Role::Plugin);
7             requires qw(afterinit);
8             our $VERSION = '1.112001';
9             1;
10              
11             =pod
12              
13             =for stopwords afterinit
14              
15             =head1 NAME
16              
17             DB::Pluggable::Role::AfterInit - Do something in the debugger's afterinit() function
18              
19             =head1 IMPLEMENTING
20              
21             The C role indicates that a plugin wants to do something
22             during the debugger's C function. The plugin must provide
23             the C method.