File Coverage

blib/lib/Config/Model/Role/Constants.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 0 1 0.0
total 28 29 96.5


line stmt bran cond sub pod time code
1             #
2             # This file is part of Config-Model
3             #
4             # This software is Copyright (c) 2005-2022 by Dominique Dumont.
5             #
6             # This is free software, licensed under:
7             #
8             # The GNU Lesser General Public License, Version 2.1, February 1999
9             #
10              
11             # ABSTRACT: Provide some constant data.
12              
13             use Mouse::Role;
14 59     59   26950 use strict;
  59         132  
  59         401  
15 59     59   16281 use warnings;
  59         142  
  59         1176  
16 59     59   290 use 5.020;
  59         128  
  59         1463  
17 59     59   1099  
  59         209  
18             use feature qw/signatures postderef/;
19 59     59   385 no warnings qw/experimental::signatures experimental::postderef/;
  59         192  
  59         5273  
20 59     59   355  
  59         147  
  59         12146  
21             my %all_props = (
22             status => 'standard',
23             level => 'normal',
24             summary => '',
25             description => '',
26             );
27              
28             return $all_props{$prop};
29 9561     9561 0 19525 }
  9561         10904  
  9561         9719  
30 9561         22406  
31             1;
32              
33              
34             =pod
35              
36             =encoding UTF-8
37              
38             =head1 NAME
39              
40             Config::Model::Role::Constants - Provide some constant data.
41              
42             =head1 VERSION
43              
44             version 2.151
45              
46             =head1 AUTHOR
47              
48             Dominique Dumont
49              
50             =head1 COPYRIGHT AND LICENSE
51              
52             This software is Copyright (c) 2005-2022 by Dominique Dumont.
53              
54             This is free software, licensed under:
55              
56             The GNU Lesser General Public License, Version 2.1, February 1999
57              
58             =cut