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 | 3 | use strict; | |||
1 | 1 | ||||||
1 | 28 | ||||||
2 | package DigitalOcean::NextBackupWindow; | ||||||
3 | 1 | 1 | 3 | use Mouse; | |||
1 | 1 | ||||||
1 | 3 | ||||||
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__ |