File Coverage

blib/lib/DigitalOcean/Links.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1 1     1   4 use strict;
  1         2  
  1         30  
2             package DigitalOcean::Links;
3 1     1   5 use Mouse;
  1         1  
  1         5  
4 1     1   269 use DigitalOcean::Types;
  1         6  
  1         49  
5              
6             #ABSTRACT: Represents a Links object in the DigitalOcean API
7              
8             has pages => (
9             is => 'ro',
10             isa => 'Coerced::DigitalOcean::Pages',
11             coerce => 1,
12             );
13              
14              
15             __PACKAGE__->meta->make_immutable();
16              
17             1;
18              
19             __END__