File Coverage

blib/lib/Test2/EventFacet/Error.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 2 2 100.0
total 21 21 100.0


line stmt bran cond sub pod time code
1             package Test2::EventFacet::Error;
2 246     246   1644 use strict;
  246         610  
  246         7101  
3 246     246   1210 use warnings;
  246         456  
  246         18778  
4              
5             our $VERSION = '1.302180';
6              
7 3     3 1 12 sub facet_key { 'errors' }
8 6     6 1 29 sub is_list { 1 }
9              
10 246     246   1624 BEGIN { require Test2::EventFacet; our @ISA = qw(Test2::EventFacet) }
  246         10619  
11 246     246   1622 use Test2::Util::HashBase qw{ -tag -fail };
  246         585  
  246         1872  
12              
13             1;
14              
15             __END__