File Coverage

lib/XML/eXistDB/Util.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             # Copyrights 2010-2014 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   1065 use warnings;
  1         2  
  1         21  
6 1     1   4 use strict;
  1         2  
  1         40  
7              
8             package XML::eXistDB::Util;
9             our $VERSION = '0.13';
10              
11 1     1   4 use base 'Exporter';
  1         1  
  1         105  
12              
13              
14             our @EXPORT = qw/
15             NS_COLLECTION_XCONF
16             NS_EXISTDB
17             /;
18              
19             use constant
20 1         83 { NS_COLLECTION_XCONF => 'http://exist-db.org/collection-config/1.0'
21             , NS_EXISTDB => 'http://exist.sourceforge.net/NS/exist'
22 1     1   4 };
  1         2  
23              
24             1;