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   26614 use strict;
  59         140  
  59         378  
15 59     59   16176 use warnings;
  59         199  
  59         1171  
16 59     59   302 use 5.020;
  59         143  
  59         1514  
17 59     59   1144  
  59         221  
18             use feature qw/signatures postderef/;
19 59     59   374 no warnings qw/experimental::signatures experimental::postderef/;
  59         127  
  59         5289  
20 59     59   413  
  59         134  
  59         12272  
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 20011 }
  9561         11449  
  9561         10208  
30 9561         22666  
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.152
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