Condition Coverage

blib/lib/Net/ACME2/HTTP.pm
Criterion Covered Total %
condition 4 9 44.4


or 3 conditions

line l !l&&r !l&&!r condition
108 12 0 0 $opts_hr || ()
140 0 0 24 ref $@ or $@
218 6 6 0 $self->{'_jwt_maker'} ||= do { my $class; if ($self->{'_acme_key'}->isa('Crypt::Perl::RSA::PrivateKey')) { $class = 'Net::ACME2::JWTMaker::RSA'; } elsif ($self->{'_acme_key'}->isa('Crypt::Perl::ECDSA::PrivateKey')) { $class = 'Net::ACME2::JWTMaker::ECC'; } else { die 'Net::ACME2::X'->create('Generic', "Unrecognized key type: $self->{'_acme_key'}"); } ; unless ($class->can('new')) { require Module::Load; &Module::Load::load($class); } ; $class->new('key', $self->{'_acme_key'}) }