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-2021 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.02.
5             # This code is part of distribution XML-ExistsDB. Meta-POD processed with
6             # OODoc into POD and HTML manual-pages. See README.md
7             # Copyright Mark Overmeer. Licensed under the same terms as Perl itself.
8              
9             package XML::eXistDB::Util;
10 5     5   39 use vars '$VERSION';
  5         13  
  5         323  
11             $VERSION = '0.99_1';
12              
13 5     5   33 use base 'Exporter';
  5         10  
  5         717  
14              
15 5     5   35 use warnings;
  5         11  
  5         157  
16 5     5   28 use strict;
  5         11  
  5         268  
17              
18              
19             our @EXPORT = qw/
20             NS_COLLECTION_XCONF
21             NS_EXISTDB
22             /;
23              
24             use constant
25 5         531 { NS_COLLECTION_XCONF => 'http://exist-db.org/collection-config/1.0'
26             , NS_EXISTDB => 'http://exist.sourceforge.net/NS/exist'
27 5     5   46 };
  5         11  
28              
29             1;