File Coverage

blib/lib/Github/Hooks/Receiver/Event.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Github::Hooks::Receiver::Event;
2 4     4   16 use strict;
  4         6  
  4         113  
3 4     4   16 use warnings;
  4         5  
  4         116  
4              
5             use Class::Accessor::Lite (
6 4         24 new => 1,
7             ro => [qw/payload event/],
8 4     4   1909 );
  4         3361  
9              
10             1;