File Coverage

blib/lib/Test2/Event/ParserSelect.pm
Criterion Covered Total %
statement 13 14 92.8
branch 1 2 50.0
condition n/a
subroutine 5 6 83.3
pod 1 2 50.0
total 20 24 83.3


line stmt bran cond sub pod time code
1             package Test2::Event::ParserSelect;
2 29     29   404 use strict;
  29         28  
  29         654  
3 29     29   90 use warnings;
  29         31  
  29         1369  
4              
5             our $VERSION = '0.000012';
6              
7 29     29   91 BEGIN { require Test2::Event; our @ISA = qw(Test2::Event) }
  29         626  
8 29     29   90 use Test2::Util::HashBase qw/parser_class/;
  29         48  
  29         209  
9              
10             sub init {
11 613     613 0 11194 my $self = shift;
12 613 50       3411 defined $self->{+PARSER_CLASS} or $self->trace->throw("'parser_class' is a required attribute");
13             }
14              
15 0     0 1   sub summary { 'Selected ' . $_[0]->{+PARSER_CLASS} . ' for parsing' }
16              
17             1;
18              
19             __END__