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