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 168     168   1080 use strict;
  168         345  
  168         4622  
3 168     168   827 use warnings;
  168         327  
  168         4038  
4              
5 168     168   843 use base 'Test2::Compare::Base';
  168         371  
  168         17073  
6              
7             our $VERSION = '0.000153';
8              
9 168     168   1065 use Test2::Util::HashBase qw/expect/;
  168         352  
  168         1063  
10              
11 168     168   22103 use Carp qw/croak/;
  168         343  
  168         18671  
12              
13             sub init {
14 5063     5063 0 53456 my $self = shift;
15             croak "'expect' is a require attribute"
16 5063 100       9726 unless exists $self->{+EXPECT};
17              
18 5062         10159 $self->SUPER::init();
19             }
20              
21             1;
22              
23             __END__