File Coverage

blib/lib/Test/Stream/Compare/EventMeta.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 13 13 100.0
pod 0 9 0.0
total 34 43 79.0


line stmt bran cond sub pod time code
1             package Test::Stream::Compare::EventMeta;
2 100     100   1325 use strict;
  100         195  
  100         2612  
3 100     100   502 use warnings;
  100         196  
  100         2528  
4              
5 100     100   514 use Test::Stream::Compare::Meta;
  100         191  
  100         721  
6             use Test::Stream::HashBase(
7 100         682 base => 'Test::Stream::Compare::Meta',
8 100     100   527 );
  100         189  
9              
10 29     29 0 127 sub get_prop_file { $_[1]->debug->file }
11 34     34 0 103 sub get_prop_line { $_[1]->debug->line }
12 11     11 0 40 sub get_prop_package { $_[1]->debug->package }
13 5     5 0 19 sub get_prop_subname { $_[1]->debug->subname }
14 12     12 0 51 sub get_prop_skip { $_[1]->debug->skip }
15 11     11 0 62 sub get_prop_todo { $_[1]->debug->todo }
16 4     4 0 20 sub get_prop_trace { $_[1]->debug->trace }
17 1     1 0 10 sub get_prop_tid { $_[1]->debug->tid }
18 1     1 0 4 sub get_prop_pid { $_[1]->debug->pid }
19              
20             1;
21              
22             __END__