File Coverage

blib/lib/XML/SRS/DefaultContacts.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             package XML::SRS::DefaultContacts;
2             BEGIN {
3 1     1   9535 $XML::SRS::DefaultContacts::VERSION = '0.09';
4             }
5              
6 1     1   481 use Moose;
  0            
  0            
7              
8             use PRANG::Graph;
9              
10             has_attr 'admin_contact' =>
11             is => 'ro',
12             isa => 'XML::SRS::Boolean',
13             xml_required => 0,
14             xml_name => 'AdminContact',
15             ;
16              
17             has_attr 'technical_contact' =>
18             is => 'ro',
19             isa => 'XML::SRS::Boolean',
20             xml_required => 0,
21             xml_name => 'TechnicalContact',
22             ;
23            
24             with 'XML::SRS::Node';
25              
26             1;