File Coverage

blib/lib/DigitalOcean/Account.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   6 use strict;
  1         2  
  1         34  
2             package DigitalOcean::Account;
3 1     1   4 use Mouse;
  1         2  
  1         4  
4              
5             #ABSTRACT: Represents an Account object in the DigitalOcean API
6              
7              
8             has droplet_limit => (
9             is => 'ro',
10             isa => 'Num',
11             );
12              
13              
14             has email => (
15             is => 'ro',
16             isa => 'Str',
17             );
18              
19              
20             has uuid => (
21             is => 'ro',
22             isa => 'Str',
23             );
24              
25              
26             has email_verified => (
27             is => 'ro',
28             isa => 'Bool',
29             );
30              
31              
32             __PACKAGE__->meta->make_immutable();
33              
34             1;
35              
36             __END__