File Coverage

blib/lib/XML/SRS/Node.pm
Criterion Covered Total %
statement 2 4 50.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 4 6 66.6


line stmt bran cond sub pod time code
1              
2             package XML::SRS::Node;
3             BEGIN {
4 1     1   7479 $XML::SRS::Node::VERSION = '0.09';
5             }
6              
7 1     1   471 use Moose::Role;
  0            
  0            
8              
9             sub xmlns { } # no namespaces required.
10              
11             sub encoding { "ISO-8859-1" }
12              
13             1;