blib/lib/Parse/Crontab/Entry/Error.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 15 | 15 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | n/a | ||
total | 20 | 20 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Parse::Crontab::Entry::Error; | ||||||
2 | 2 | 2 | 46 | use 5.008_001; | |||
2 | 9 | ||||||
2 | 95 | ||||||
3 | 2 | 2 | 11 | use strict; | |||
2 | 4 | ||||||
2 | 74 | ||||||
4 | 2 | 2 | 10 | use warnings; | |||
2 | 3 | ||||||
2 | 49 | ||||||
5 | 2 | 2 | 10 | use Mouse; | |||
2 | 3 | ||||||
2 | 13 | ||||||
6 | extends 'Parse::Crontab::Entry'; | ||||||
7 | |||||||
8 | has '+is_error' => ( | ||||||
9 | default => 1, | ||||||
10 | ); | ||||||
11 | |||||||
12 | 2 | 2 | 647 | no Mouse; | |||
2 | 8 | ||||||
2 | 9 | ||||||
13 | |||||||
14 | __PACKAGE__->meta->make_immutable; |