File Coverage

blib/lib/Sentry/Integration/Base.pm
Criterion Covered Total %
statement 3 9 33.3
branch n/a
condition n/a
subroutine 1 2 50.0
pod 0 1 0.0
total 4 12 33.3


line stmt bran cond sub pod time code
1             package Sentry::Integration::Base;
2 6     6   4288 use Mojo::Base -base, -signatures;
  6         14  
  6         73  
3              
4             has 'name';
5             has initialized => 0;
6              
7 0     0 0   sub setup_once ($self, $add_global_event_processor, $get_current_hub) {
  0            
  0            
  0            
  0            
8 0           die 'needs to be overridden';
9             }
10              
11             1;