File Coverage

blib/lib/TEI/Lite.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package TEI::Lite;
2              
3             ##==================================================================##
4             ## Libraries and Variables ##
5             ##==================================================================##
6              
7             require 5.006;
8             require Exporter::Cluster;
9              
10 6     6   146614 use strict;
  6         14  
  6         221  
11 6     6   30 use warnings;
  6         9  
  6         711  
12              
13             our @ISA = qw( Exporter::Cluster );
14              
15             our %EXPORT_CLUSTER = ( 'TEI::Lite::Document' => [],
16             'TEI::Lite::Element' => [],
17             'TEI::Lite::Header' => [],
18             'TEI::Lite::Utility' => [], );
19              
20             our $VERSION = "0.60";
21              
22             ##==================================================================##
23             ## Constructor(s)/Deconstructor(s) ##
24             ##==================================================================##
25              
26             ##
27             ## None.
28             ##
29              
30             ##==================================================================##
31             ## Method(s) ##
32             ##==================================================================##
33              
34             ##
35             ## None.
36             ##
37              
38             ##==================================================================##
39             ## End of Code ##
40             ##==================================================================##
41             1;
42              
43             ##==================================================================##
44             ## Plain Old Documentation (POD) ##
45             ##==================================================================##
46              
47             __END__