File Coverage

lib/XML/eXistDB/Util.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             # Copyrights 2010-2015 by [Mark Overmeer].
2             # For other contributors see ChangeLog.
3             # See the manual pages for details on the licensing terms.
4             # Pod stripped from pm file by OODoc 2.01.
5 1     1   990 use warnings;
  1         2  
  1         29  
6 1     1   4 use strict;
  1         1  
  1         23  
7              
8             package XML::eXistDB::Util;
9 1     1   3 use vars '$VERSION';
  1         1  
  1         36  
10             $VERSION = '0.14';
11              
12 1     1   4 use base 'Exporter';
  1         0  
  1         87  
13              
14              
15             our @EXPORT = qw/
16             NS_COLLECTION_XCONF
17             NS_EXISTDB
18             /;
19              
20             use constant
21 1         82 { NS_COLLECTION_XCONF => 'http://exist-db.org/collection-config/1.0'
22             , NS_EXISTDB => 'http://exist.sourceforge.net/NS/exist'
23 1     1   7 };
  1         1  
24              
25             1;