File Coverage

blib/lib/OpenID/Lite/RelyingParty/Discover/FetchResult.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 OpenID::Lite::RelyingParty::Discover::FetchResult;
2              
3 2     2   37561 use Any::Moose;
  2         1597  
  2         17  
4              
5             has 'xrds' => (
6             is => 'rw',
7             );
8              
9             has 'content_type' => (
10             is => 'rw',
11             isa => 'Str',
12             );
13              
14             has 'content' => (
15             is => 'rw',
16             isa => 'Str',
17             );
18              
19             has 'normalized_identifier' => (
20             is => 'rw',
21             isa => 'Str',
22             );
23              
24             has 'final_url' => (
25             is => 'rw',
26             isa => 'Str',
27             );
28              
29 2     2   1030 no Any::Moose;
  2         5  
  2         8  
30             __PACKAGE__->meta->make_immutable;
31             1;
32              
33