File Coverage

blib/lib/OpenTelemetry/Propagator/None.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package OpenTelemetry::Propagator::None;
2             # ABSTRACT: A context propagator for OpenTelemetry that does nothing
3              
4             our $VERSION = '0.033';
5              
6 10     10   250226 use parent 'OpenTelemetry::Propagator::TextMap';
  10         433  
  10         120  
7              
8             1;