File Coverage

blib/lib/IO/K8s/Traefik/V1alpha1/IngressRoute.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 6 100.0


line stmt bran cond sub pod time code
1             package IO::K8s::Traefik::V1alpha1::IngressRoute;
2             # ABSTRACT: Traefik HTTP routing via IngressRoute
3             our $VERSION = '1.008';
4             use IO::K8s::APIObject
5 5         47 api_version => 'traefik.io/v1alpha1',
6 5     5   499686 resource_plural => 'ingressroutes';
  5         17  
7             with 'IO::K8s::Role::Namespaced', 'IO::K8s::Role::Routable';
8              
9 5     5   10 sub _route_format { 'traefik' }
10              
11             k8s spec => { Str => 1 };
12             k8s status => { Str => 1 };
13              
14             1;
15              
16             __END__