File Coverage

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 4     4   1734 use strict;
  4         8  
  4         104  
3 4     4   21 use warnings;
  4         8  
  4         170  
4             package App::Spec::Role::Plugin::GlobalOptions;
5              
6             our $VERSION = '0.012'; # VERSION
7              
8 4     4   18 use Moo::Role;
  4         10  
  4         21  
9              
10             requires 'install_options';
11              
12             with 'App::Spec::Role::Plugin';
13              
14             1;
15              
16             __END__