File Coverage

blib/lib/XML/SRS/Audit.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::Audit;
3             BEGIN {
4 1     1   22205 $XML::SRS::Audit::VERSION = '0.09';
5             }
6              
7 1     1   461 use Moose::Role;
  0            
  0            
8             use PRANG::Graph;
9              
10             has_element 'audit' =>
11             is => "rw",
12             isa => "Str",
13             xml_nodeName => "AuditText",
14             xml_required => 0,
15             ;
16              
17             1;