File Coverage

blib/lib/Test2/Compare/Wildcard.pm
Criterion Covered Total %
statement 18 18 100.0
branch 2 2 100.0
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 26 27 96.3


line stmt bran cond sub pod time code
1             package Test2::Compare::Wildcard;
2 169     169   1152 use strict;
  169         326  
  169         4980  
3 169     169   893 use warnings;
  169         321  
  169         4303  
4              
5 169     169   893 use base 'Test2::Compare::Base';
  169         355  
  169         18255  
6              
7             our $VERSION = '0.000155';
8              
9 169     169   1157 use Test2::Util::HashBase qw/expect/;
  169         442  
  169         1245  
10              
11 169     169   24115 use Carp qw/croak/;
  169         371  
  169         19304  
12              
13             sub init {
14 5065     5065 0 59471 my $self = shift;
15             croak "'expect' is a require attribute"
16 5065 100       11068 unless exists $self->{+EXPECT};
17              
18 5064         11962 $self->SUPER::init();
19             }
20              
21             1;
22              
23             __END__