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             package Config::Model::Role::Constants 2.153; # TRIAL
11              
12             # ABSTRACT: Provide some constant data.
13              
14 59     59   30488 use Mouse::Role;
  59         162  
  59         407  
15 59     59   18098 use strict;
  59         153  
  59         1350  
16 59     59   348 use warnings;
  59         243  
  59         1815  
17 59     59   1243 use 5.020;
  59         301  
18              
19 59     59   447 use feature qw/signatures postderef/;
  59         244  
  59         5930  
20 59     59   564 no warnings qw/experimental::signatures experimental::postderef/;
  59         201  
  59         13265  
21              
22             my %all_props = (
23             status => 'standard',
24             level => 'normal',
25             summary => '',
26             description => '',
27             );
28              
29 9687     9687 0 23984 sub get_default_property ($prop) {
  9687         13485  
  9687         12006  
30 9687         27323 return $all_props{$prop};
31             }
32              
33             1;
34              
35             __END__
36              
37             =pod
38              
39             =encoding UTF-8
40              
41             =head1 NAME
42              
43             Config::Model::Role::Constants - Provide some constant data.
44              
45             =head1 VERSION
46              
47             version 2.153
48              
49             =head1 AUTHOR
50              
51             Dominique Dumont
52              
53             =head1 COPYRIGHT AND LICENSE
54              
55             This software is Copyright (c) 2005-2022 by Dominique Dumont.
56              
57             This is free software, licensed under:
58              
59             The GNU Lesser General Public License, Version 2.1, February 1999
60              
61             =cut