File Coverage

blib/lib/Sentry/Tracing/SamplingMethod.pm
Criterion Covered Total %
statement 4 7 57.1
branch n/a
condition n/a
subroutine 2 5 40.0
pod 0 4 0.0
total 6 16 37.5


line stmt bran cond sub pod time code
1             package Sentry::Tracing::SamplingMethod;
2 6     6   39 use Mojo::Base -base, -signatures;
  6         11  
  6         49  
3              
4 0     0 0 0 sub Explicit {'explicitly_set'}
5 0     0 0 0 sub Sampler {'client_sampler'}
6 11     11 0 76 sub Rate {'client_rate'}
7 0     0 0   sub Inheritance {'inheritance'}
8              
9             1;