File Coverage

lib/GraphViz2/Abstract/Util/Constants.pm
Criterion Covered Total %
statement 25 25 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod n/a
total 34 34 100.0


line stmt bran cond sub pod time code
1 2     2   28060 use strict;
  2         4  
  2         75  
2 2     2   11 use warnings;
  2         4  
  2         162  
3              
4             package GraphViz2::Abstract::Util::Constants;
5             BEGIN {
6 2     2   87 $GraphViz2::Abstract::Util::Constants::AUTHORITY = 'cpan:KENTNL';
7             }
8             {
9             $GraphViz2::Abstract::Util::Constants::VERSION = '0.001000';
10             }
11              
12             # ABSTRACT: Constants used by C
13              
14             ## no critic (ProhibitConstantPragma)
15 2     2   10 use constant EMPTY_STRING => q[];
  2         4  
  2         169  
16 2     2   9 use constant FALSE => q[false];
  2         3  
  2         89  
17 2     2   10 use constant NONE => \q[none];
  2         4  
  2         85  
18 2     2   10 use constant TRUE => q[true];
  2         3  
  2         84  
19 2     2   9 use constant UNKNOWN => \q[unknown];
  2         3  
  2         79  
20              
21 2     2   1567 use parent 'Exporter';
  2         600  
  2         12  
22              
23             ## no critic (ProhibitAutomaticExportation)
24             our (@EXPORT) = qw( EMPTY_STRING FALSE NONE TRUE UNKNOWN );
25              
26              
27             1;
28              
29             __END__