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 4     4   244695 use strict;
  4         9  
  4         746  
3 4     4   30 use warnings;
  4         9  
  4         441  
4             package App::Spec::Completion;
5              
6             our $VERSION = 'v0.15.0'; # VERSION
7              
8 4     4   748 use Moo;
  4         9293  
  4         22  
9              
10             has spec => ( is => 'ro' );
11              
12             1;
13              
14             __DATA__