File Coverage

blib/lib/CLI/Osprey/Descriptive.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 19 19 100.0


line stmt bran cond sub pod time code
1             package CLI::Osprey::Descriptive;
2              
3 4     4   28 use strict;
  4         7  
  4         113  
4 4     4   20 use warnings;
  4         7  
  4         218  
5              
6             # ABSTRACT: Getopt::Long::Descriptive subclass for CLI::Osprey use
7             our $VERSION = '0.06'; # VERSION
8             our $AUTHORITY = 'cpan:ARODLAND'; # AUTHORITY
9              
10 4     4   1987 use Getopt::Long::Descriptive 0.100;
  4         139314  
  4         28  
11 4     4   3497 use CLI::Osprey::Descriptive::Usage;
  4         12  
  4         341  
12              
13             our @ISA = ('Getopt::Long::Descriptive');
14              
15 13     13 1 3155 sub usage_class { 'CLI::Osprey::Descriptive::Usage' }
16              
17             1;
18              
19             __END__