File Coverage

blib/lib/CAD/Firemen/Change/Type.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2             ######################
3             #
4             # Copyright (C) 2011 TU Clausthal, Institut fuer Maschinenwesen, Joachim Langenbach
5             #
6             # This program is free software: you can redistribute it and/or modify
7             # it under the terms of the GNU General Public License as published by
8             # the Free Software Foundation, either version 3 of the License, or
9             # (at your option) any later version.
10             #
11             # This program is distributed in the hope that it will be useful,
12             # but WITHOUT ANY WARRANTY; without even the implied warranty of
13             # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14             # GNU General Public License for more details.
15             #
16             # You should have received a copy of the GNU General Public License
17             # along with this program. If not, see .
18             #
19             ######################
20              
21 1     1   6 use strict;
  1         1  
  1         25  
22 1     1   5 use warnings;
  1         3  
  1         60  
23              
24             # Pod::Weaver infos
25             # ABSTRACT: Constants to represant the change type of CAD::Firemen::Change
26              
27             package CAD::Firemen::Change::Type;
28             {
29             $CAD::Firemen::Change::Type::VERSION = '0.7.1';
30             }
31 1     1   4 use Exporter 'import';
  1         1  
  1         41  
32              
33             use constant {
34 1         110 NoChange => 'NoChange',
35             NoSpecial => 'NoSpecial',
36             Case => 'Case',
37             Path => 'Path',
38             ValuesChanged => 'ValuesChanged',
39             DefaultValueChanged => 'DefaultValueChanged'
40 1     1   5 };
  1         2  
41              
42             1;
43              
44             __END__