| blib/lib/App/Spec/Role/Plugin/GlobalOptions.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 9 | 9 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 3 | 3 | 100.0 |
| pod | n/a | ||
| total | 12 | 12 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | # ABSTRACT: Plugins for adding options should use this role | ||||||
| 2 | 8 | 8 | 231505 | use strict; | |||
| 8 | 30 | ||||||
| 8 | 383 | ||||||
| 3 | 8 | 8 | 67 | use warnings; | |||
| 8 | 19 | ||||||
| 8 | 789 | ||||||
| 4 | package App::Spec::Role::Plugin::GlobalOptions; | ||||||
| 5 | |||||||
| 6 | our $VERSION = 'v0.15.0'; # VERSION | ||||||
| 7 | |||||||
| 8 | 8 | 8 | 535 | use Moo::Role; | |||
| 8 | 19904 | ||||||
| 8 | 99 | ||||||
| 9 | |||||||
| 10 | requires 'install_options'; | ||||||
| 11 | |||||||
| 12 | with 'App::Spec::Role::Plugin'; | ||||||
| 13 | |||||||
| 14 | 1; | ||||||
| 15 | |||||||
| 16 | __END__ |