File Coverage

blib/lib/DB/Pluggable/Role/WatchFunction.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::WatchFunction;
2 1     1   1633 use strict;
  1         2  
  1         34  
3 1     1   5 use warnings;
  1         2  
  1         26  
4 1     1   19 use 5.010;
  1         3  
  1         34  
5 1     1   5 use Role::Basic;
  1         2  
  1         6  
6             with qw(Brickyard::Role::Plugin);
7             requires qw(watchfunction);
8             our $VERSION = '1.112001';
9             1;
10              
11             =pod
12              
13             =for stopwords watchfunction
14              
15             =head1 NAME
16              
17             DB::Pluggable::Role::WatchFunction - Do something during the debugger's watchfunction()
18              
19             =head1 IMPLEMENTING
20              
21             The C role indicates that a plugin wants to do
22             something during the debugger's C function. The
23             plugin must provide the C method.