File Coverage

blib/lib/App/Spec/Role/Plugin/Subcommand.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 subcommands should use this role
2 4     4   1768 use strict;
  4         8  
  4         102  
3 4     4   21 use warnings;
  4         8  
  4         200  
4             package App::Spec::Role::Plugin::Subcommand;
5              
6             our $VERSION = '0.012'; # VERSION
7              
8 4     4   21 use Moo::Role;
  4         7  
  4         31  
9              
10             requires 'install_subcommands';
11              
12             with 'App::Spec::Role::Plugin';
13              
14             1;
15              
16             __END__