File Coverage

blib/lib/IO/K8s/GatewayAPI/V1/HTTPRoute.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::GatewayAPI::V1::HTTPRoute;
2             # ABSTRACT: Gateway API HTTP routing rules
3             our $VERSION = '1.008';
4             use IO::K8s::APIObject
5 3         48 api_version => 'gateway.networking.k8s.io/v1',
6 3     3   3562 resource_plural => 'httproutes';
  3         842  
7             with 'IO::K8s::Role::Namespaced', 'IO::K8s::Role::Routable';
8              
9 7     7   12 sub _route_format { 'gateway' }
10              
11             k8s spec => { Str => 1 };
12             k8s status => { Str => 1 };
13              
14             1;
15              
16             __END__