File Coverage

blib/lib/CFDI/Constants/Class.pm
Criterion Covered Total %
statement 27 27 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod n/a
total 36 36 100.0


line stmt bran cond sub pod time code
1             package CFDI::Constants::Class;
2 1     1   5 use strict;
  1         2  
  1         57  
3             our $VERSION = 0.3;
4              
5             require Exporter;
6             our @EXPORT = qw(
7             CONTENT
8             ELEMENT
9             TEXT
10             COMMENT
11             ATTRIBUTES
12             DECLARATION
13             NAME
14             INSTRUCTION
15             );
16             our @ISA = qw(Exporter);
17              
18 1     1   5 use constant CONTENT => 1;
  1         1  
  1         63  
19 1     1   5 use constant ELEMENT => 3;
  1         1  
  1         40  
20 1     1   5 use constant TEXT => 4;
  1         5  
  1         39  
21 1     1   5 use constant COMMENT => 5;
  1         1  
  1         36  
22 1     1   4 use constant ATTRIBUTES => 6;
  1         2  
  1         34  
23 1     1   4 use constant DECLARATION => 7;
  1         2  
  1         33  
24 1     1   4 use constant NAME => 8;
  1         1  
  1         31  
25 1     1   4 use constant INSTRUCTION => 9;
  1         1  
  1         34  
26              
27             1;