File Coverage

blib/lib/Test2/Event/Note.pm
Criterion Covered Total %
statement 14 14 100.0
branch 2 2 100.0
condition n/a
subroutine 6 6 100.0
pod 1 2 50.0
total 23 24 95.8


line stmt bran cond sub pod time code
1             package Test2::Event::Note;
2 57     57   471 use strict;
  57         55  
  57         1255  
3 57     57   162 use warnings;
  57         54  
  57         2213  
4              
5             our $VERSION = '0.000043';
6             $VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)
7              
8 57     57   230 use base 'Test2::Event';
  57         54  
  57         3277  
9 57     57   215 use Test2::Util::HashBase qw/message/;
  57         69  
  57         264  
10              
11             sub init {
12 31 100   31 0 110 $_[0]->{+MESSAGE} = 'undef' unless defined $_[0]->{+MESSAGE};
13             }
14              
15 2     2 1 9 sub summary { $_[0]->{+MESSAGE} }
16              
17             1;
18              
19             __END__