File Coverage

blib/lib/Net/Fastly/Domain.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 Net::Fastly::Domain;
2              
3 4     4   11 use strict;
  4         5  
  4         104  
4 4     4   12 use base qw(Net::Fastly::BelongsToServiceAndVersion);
  4         3  
  4         288  
5              
6             Net::Fastly::Domain->mk_accessors(qw(service_id name comment));
7              
8             =head1 NAME
9              
10             Net::Fastly::Domain - Representation of a domain name you want to map to a service
11              
12             =head1 ACCESSORS
13              
14             =head2 service_id
15              
16             The id of the service this belongs to.
17              
18             =head2 version
19              
20             The number of the version this belongs to.
21              
22             =head2 name
23              
24             The domain name of this domain
25              
26             =head2 comment
27              
28             a free form comment field
29              
30              
31             =cut
32             1;