File Coverage

blib/lib/DigitalOcean/Meta.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   3 use strict;
  1         1  
  1         27  
2             package DigitalOcean::Meta;
3 1     1   2 use Mouse;
  1         1  
  1         4  
4              
5             #ABSTRACT: Represents a Meta object in the DigitalOcean API
6              
7             has total => (
8             is => 'ro',
9             isa => 'Num',
10             );
11              
12             #last HTTP::Response.
13              
14              
15             __PACKAGE__->meta->make_immutable();
16              
17             1;
18              
19             __END__