File Coverage

blib/lib/DigitalOcean/Region.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 1     1   4 use strict;
  1         2  
  1         30  
2             package DigitalOcean::Region;
3 1     1   5 use Mouse;
  1         2  
  1         10  
4              
5             #ABSTRACT: Represents a Region object in the DigitalOcean API
6              
7             has slug => (
8             is => 'ro',
9             isa => 'Undef|Str',
10             );
11              
12             has name => (
13             is => 'ro',
14             isa => 'Str',
15             );
16              
17             has sizes => (
18             is => 'ro',
19             isa => 'ArrayRef[Str]',
20             default => sub { [] },
21             );
22              
23             has available => (
24             is => 'ro',
25             isa => 'Bool',
26             );
27              
28             has features => (
29             is => 'ro',
30             isa => 'ArrayRef[Str]',
31             default => sub { [] },
32             );
33              
34              
35             __PACKAGE__->meta->make_immutable();
36              
37             1;
38              
39             __END__