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 8     8   332516 use strict;
  8         19  
  8         359  
3 8     8   46 use warnings;
  8         63  
  8         809  
4             package App::Spec::Role::Plugin::Subcommand;
5              
6             our $VERSION = 'v0.15.0'; # VERSION
7              
8 8     8   566 use Moo::Role;
  8         26052  
  8         104  
9              
10             requires 'install_subcommands';
11              
12             with 'App::Spec::Role::Plugin';
13              
14             1;
15              
16             __END__