File Coverage

blib/lib/IO/K8s/CertManager/V1/ClusterIssuer.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package IO::K8s::CertManager::V1::ClusterIssuer;
2             # ABSTRACT: cert-manager cluster-scoped certificate issuer
3             our $VERSION = '1.008';
4             use IO::K8s::APIObject
5 3         28 api_version => 'cert-manager.io/v1',
6 3     3   3697 resource_plural => 'clusterissuers';
  3         7  
7              
8             with 'IO::K8s::Role::CertManaged';
9              
10             k8s spec => { Str => 1 };
11             k8s status => { Str => 1 };
12              
13             1;
14              
15             __END__