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   2629 use strict;
  1         2  
  1         26  
3 1     1   4 use warnings;
  1         2  
  1         36  
4             package App::Spec::Completion;
5              
6             our $VERSION = '0.012'; # VERSION
7              
8 1     1   4 use Moo;
  1         2  
  1         4  
9              
10             has spec => ( is => 'ro' );
11              
12             1;
13              
14             __DATA__