File Coverage

blib/lib/HH/Unispool/Config/File/Token/Factory.pm
Criterion Covered Total %
statement 172 176 97.7
branch 73 80 91.2
condition 3 9 33.3
subroutine 10 10 100.0
pod 3 3 100.0
total 261 278 93.8


line stmt bran cond sub pod time code
1             package HH::Unispool::Config::File::Token::Factory;
2              
3 10     10   6720 use 5.006;
  10         35  
  10         412  
4 10     10   63 use strict;
  10         19  
  10         334  
5 10     10   57 use warnings;
  10         15  
  10         361  
6 10     10   804 use AutoLoader qw(AUTOLOAD);
  10         1244  
  10         73  
7 10     10   1261 use Error qw(:try);
  10         6349  
  10         74  
8 10     10   9135 use HH::Unispool::Config::File::Token qw( :rx );
  10         26  
  10         5071  
9              
10             # Singleton variable
11             our $SINGLETON = undef;
12              
13             # Package version
14             our ($VERSION) = '$Revision: 0.3 $' =~ /\$Revision:\s+([^\s]+)/;
15              
16             1;
17              
18             __END__