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   15 use strict;
  4         7  
  4         131  
3 4     4   16 use warnings;
  4         6  
  4         128  
4              
5             use Class::Accessor::Lite (
6 4         30 new => 1,
7             ro => [qw/payload event/],
8 4     4   2203 );
  4         4105  
9              
10             1;