File Coverage

lib/BPM/XPDL/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-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   2517 use warnings;
  1         3  
  1         37  
6 1     1   6 use strict;
  1         2  
  1         51  
7              
8             package BPM::XPDL::Util;
9 1     1   25 use vars '$VERSION';
  1         2  
  1         61  
10             $VERSION = '0.92';
11              
12 1     1   5 use base 'Exporter';
  1         2  
  1         178  
13              
14             our @EXPORT = qw/NS_XPDL_009 NS_XPDL_10 NS_XPDL_20 NS_XPDL_21/;
15              
16             our %EXPORT_TAGS =
17             ( xpdl009 => [ qw/NS_XPDL_009/ ]
18             , xpdl10 => [ qw/NS_XPDL_10/ ]
19             , xpdl20 => [ qw/NS_XPDL_20 NS_XPDL_10/ ]
20             , xpdl21 => [ qw/NS_XPDL_21 NS_XPDL_20 NS_XPDL_10/ ]
21             );
22              
23              
24             use constant
25 1         131 { NS_XPDL_009 => 'http://www.wfmc.org/2002/XPDL1.0'
26             , NS_XPDL_10 => 'http://www.wfmc.org/2002/XPDL1.0'
27             , NS_XPDL_20 => 'http://www.wfmc.org/2004/XPDL2.0alpha'
28             , NS_XPDL_21 => 'http://www.wfmc.org/2008/XPDL2.1'
29 1     1   6 };
  1         2  
30              
31             1;