File Coverage

blib/lib/XML/SRS/Contact/Address/Filter.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::Contact::Address::Filter;
3             BEGIN {
4 1     1   1748 $XML::SRS::Contact::Address::Filter::VERSION = '0.09';
5             }
6              
7 1     1   389 use Moose;
  0            
  0            
8             use PRANG::Graph;
9              
10             has_attr 'address1' =>
11             is => 'ro',
12             isa => 'Str',
13             xml_required => 0,
14             xml_name => 'Address1',
15             ;
16              
17             has_attr 'address2' =>
18             is => 'ro',
19             isa => 'Str',
20             xml_required => 0,
21             xml_name => 'Address2',
22             ;
23              
24             has_attr 'city' =>
25             is => 'ro',
26             isa => 'Str',
27             xml_required => 0,
28             xml_name => 'City',
29             ;
30              
31             has_attr 'region' =>
32             is => 'ro',
33             isa => 'Str',
34             xml_required => 0,
35             xml_name => 'Province',
36             ;
37              
38             has_attr 'cc' =>
39             is => 'ro',
40             isa => 'Str',
41             xml_required => 0,
42             xml_name => 'CountryCode',
43             ;
44              
45             has_attr 'postcode' =>
46             is => 'ro',
47             isa => 'Str',
48             xml_required => 0,
49             xml_name => 'PostalCode',
50             ;
51              
52             with 'XML::SRS::Node';
53              
54             1;