File Coverage

blib/lib/App/Spec/Completion.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: Shell Completion generator
2 1     1   3239 use strict;
  1         2  
  1         28  
3 1     1   6 use warnings;
  1         2  
  1         44  
4             package App::Spec::Completion;
5              
6             our $VERSION = '0.011'; # VERSION
7              
8 1     1   5 use Moo;
  1         2  
  1         6  
9              
10             has spec => ( is => 'ro' );
11              
12             1;
13              
14             __DATA__