File Coverage

blib/lib/DigitalOcean/NextBackupWindow.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   5 use strict;
  1         1  
  1         34  
2             package DigitalOcean::NextBackupWindow;
3 1     1   5 use Mouse;
  1         2  
  1         4  
4              
5             #ABSTRACT: Represents a Network object in the DigitalOcean API
6              
7             has end => (
8             is => 'ro',
9             isa => 'Str',
10             );
11              
12             has start => (
13             is => 'ro',
14             isa => 'Str',
15             );
16              
17              
18             __PACKAGE__->meta->make_immutable();
19              
20             1;
21              
22             __END__