File Coverage

blib/lib/IO/K8s/Api/Core/V1/ConfigMap.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::Api::Core::V1::ConfigMap;
2             # ABSTRACT: ConfigMap holds configuration data for pods to consume.
3             our $VERSION = '1.008';
4 7     7   7137 use IO::K8s::APIObject;
  7         25  
  7         87  
5             with 'IO::K8s::Role::Namespaced';
6              
7              
8             k8s binaryData => { Str => 1 };
9              
10              
11             k8s data => { Str => 1 };
12              
13              
14             k8s immutable => Bool;
15              
16              
17              
18             1;
19              
20             __END__