blib/lib/Starch/Plugin/RenewExpiration.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 12 | 12 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | 0 | 1 | 0.0 |
total | 17 | 18 | 94.4 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Starch::Plugin::RenewExpiration; | ||||||
2 | 1 | 1 | 792 | use 5.008001; | |||
1 | 4 | ||||||
3 | 1 | 1 | 6 | use strictures 2; | |||
1 | 10 | ||||||
1 | 46 | ||||||
4 | our $VERSION = '0.12'; | ||||||
5 | |||||||
6 | 1 | 1 | 287 | use Moo; | |||
1 | 3 | ||||||
1 | 8 | ||||||
7 | 1 | 1 | 398 | use namespace::clean; | |||
1 | 3 | ||||||
1 | 10 | ||||||
8 | |||||||
9 | with qw( | ||||||
10 | Starch::Plugin::Bundle | ||||||
11 | ); | ||||||
12 | |||||||
13 | sub bundled_plugins { | ||||||
14 | 1 | 1 | 0 | 26 | return [qw( | ||
15 | ::RenewExpiration::Manager | ||||||
16 | ::RenewExpiration::State | ||||||
17 | )]; | ||||||
18 | } | ||||||
19 | |||||||
20 | 1; | ||||||
21 | __END__ |