File Coverage

lib/Data/DublinCore/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 2009-2010 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 1.06.
5 1     1   1353 use warnings;
  1         2  
  1         33  
6 1     1   4 use strict;
  1         1  
  1         46  
7              
8             package Data::DublinCore::Util;
9 1     1   32 use vars '$VERSION';
  1         2  
  1         54  
10             $VERSION = '0.04';
11              
12 1     1   5 use base 'Exporter';
  1         1  
  1         106  
13              
14             our @EXPORT = qw/
15             NS_DC_DCMITYPE
16             NS_DC_ELEMS11
17             NS_DC_TERMS
18             /;
19              
20              
21             use constant
22 1         93 { NS_DC_ELEMS11 => 'http://purl.org/dc/elements/1.1/'
23             , NS_DC_DCMITYPE => 'http://purl.org/dc/dcmitype/'
24             , NS_DC_TERMS => 'http://purl.org/dc/terms/'
25 1     1   9 };
  1         2  
26              
27             1;